/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | jscompress.c | 58 if (tt->str != tt->buf) { in tok_reset() 59 free(tt->str); in tok_reset() 60 tt->str = tt->buf; in tok_reset() 61 tt->size = sizeof(tt->buf); in tok_reset() 63 tt->len = 0; in tok_reset() 68 if (tt->len + 1 > tt->size) { in tok_add_ch() 70 if (tt->str == tt->buf) { in tok_add_ch() 71 tt->str = malloc(tt->size); in tok_add_ch() 72 memcpy(tt->str, tt->buf, tt->len); in tok_add_ch() 74 tt->str = realloc(tt->str, tt->size); in tok_add_ch() [all …]
|
A D | README.md | 41 dependency, 210 KiB of x86 code for a simple <tt>hello world</tt> 79 <tt>qjs</tt> and <tt>qjscalc</tt> can be run in <a href="https://bellard.org/jslinux/vm.html?url=bu…
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftbitmap.c | 513 FT_Byte* tt = t; in FT_Bitmap_Convert() local 530 tt[7] = (FT_Byte)( val & 0x01 ); in FT_Bitmap_Convert() 532 tt += 8; in FT_Bitmap_Convert() 547 tt += 1; in FT_Bitmap_Convert() 595 FT_Byte* tt = t; in FT_Bitmap_Convert() local 611 tt += 4; in FT_Bitmap_Convert() 624 tt += 1; in FT_Bitmap_Convert() 647 FT_Byte* tt = t; in FT_Bitmap_Convert() local 661 tt += 2; in FT_Bitmap_Convert() 687 FT_Byte* tt = t; in FT_Bitmap_Convert() local [all …]
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | platform_util.c | 106 struct tm *mbedtls_platform_gmtime_r( const mbedtls_time_t *tt, in mbedtls_platform_gmtime_r() argument 110 return( ( gmtime_s( tm_buf, tt ) == 0 ) ? tm_buf : NULL ); in mbedtls_platform_gmtime_r() 112 return( gmtime_r( tt, tm_buf ) ); in mbedtls_platform_gmtime_r() 121 lt = gmtime( tt ); in mbedtls_platform_gmtime_r()
|
A D | x509.c | 897 mbedtls_time_t tt; in x509_get_current_time() local 900 tt = mbedtls_time( NULL ); in x509_get_current_time() 901 lt = mbedtls_platform_gmtime_r( &tt, &tm_buf ); in x509_get_current_time()
|
/AliOS-Things-master/components/uvoice/internal/ |
A D | uvoice_linux.h | 110 struct timeval tt; in os_current_time() local 111 gettimeofday(&tt, NULL); in os_current_time() 112 return tt.tv_sec * 1000 + tt.tv_usec / 1000; in os_current_time() 302 struct timeval tt; in os_sem_wait() local 303 gettimeofday(&tt, NULL); in os_sem_wait() 304 ts.tv_sec = tt.tv_sec + timeout / 1000; in os_sem_wait() 305 ts.tv_nsec = tt.tv_usec * 1000 + (timeout % 1000) * 1000 * 1000; in os_sem_wait()
|
/AliOS-Things-master/components/SDL2/test/ |
A D | testautomation_audio.c | 348 int t, tt; in audio_enumerateAndNameAudioDevices() local 363 tt = t + SDLTest_RandomIntegerInRange(1,10); in audio_enumerateAndNameAudioDevices() 364 nn = SDL_GetNumAudioDevices(tt); in audio_enumerateAndNameAudioDevices() 365 …ult from SDL_GetNumAudioDevices(%i), expected same number of audio devices %i, got %i", tt, n, nn); in audio_enumerateAndNameAudioDevices() 366 nn = SDL_GetNumAudioDevices(-tt); in audio_enumerateAndNameAudioDevices() 367 …lt from SDL_GetNumAudioDevices(%i), expected same number of audio devices %i, got %i", -tt, n, nn); in audio_enumerateAndNameAudioDevices() 380 tt = t + SDLTest_RandomIntegerInRange(1,10); in audio_enumerateAndNameAudioDevices() 381 nameAgain = SDL_GetAudioDeviceName(i, tt); in audio_enumerateAndNameAudioDevices() 382 …rtCheck(nameAgain != NULL, "Verify result from SDL_GetAudioDeviceName(%i, %i) is not NULL", i, tt); in audio_enumerateAndNameAudioDevices() 384 …0', "Verify result from SDL_GetAudioDeviceName(%i, %i) is not empty, got: '%s'", i, tt, nameAgain); in audio_enumerateAndNameAudioDevices() [all …]
|
/AliOS-Things-master/components/mbedtls/include/mbedtls/ |
A D | platform_util.h | 177 struct tm *mbedtls_platform_gmtime_r( const mbedtls_time_t *tt,
|
/AliOS-Things-master/components/py_engine/engine/lib/libm/ |
A D | erf_lgamma.c | 54 tt = 6.6971006518e-09f, /* 0x31e61c52 */ variable 219 p = z*p1-(tt-w*(p2+y*p3));
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/fwlib/usb_otg/include/ |
A D | hcd.h | 144 struct usb_tt *tt, gfp_t mem_flags);
|
/AliOS-Things-master/components/oss/src/utils/ |
A D | Utils.cc | 685 std::time_t tt = -1; in UtcToUnixTime() local 694 tt = _mkgmtime64(&tm); in UtcToUnixTime() 697 tt = timegm(&tm); in UtcToUnixTime() 701 return tt < 0 ? -1 : tt; in UtcToUnixTime()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/ |
A D | test_ref.ppm | 4 …tt�tt������������������������������Ǧ����������������������������ƿ����ڲ����ž�ɟ���������������������…
|
/AliOS-Things-master/components/fatfs/src/ |
A D | ff.c | 2953 const TCHAR *tp, *tt; local 2965 …for (tt = *path; (UINT)*tt >= (FF_USE_LFN ? ' ' : '!') && *tt != ':'; tt++) ; /* Find a colon in t… 2966 if (*tt == ':') { /* If a colon is exist in the path name */ 2969 if (IsDigit(i) && tp == tt) { /* Is there a numeric drive id + colon? */ 2972 *path = ++tt; 2977 i = 0; tt++; 2984 } while ((c || tp != tt) && ++i < FF_VOLUMES); /* Repeat for each id until pattern match */ 2987 *path = tt;
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | make_vms.com | 31 $ tt = tmpnam + ".txt"
|
/AliOS-Things-master/documentation/doxygen/style/ |
A D | doxygen-custom.css | 1783 tt, code, kbd, samp selector
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/ |
A D | rgb-3c-8b.ppm | 12 …2Z�4b�?o�Iw�Sz�Vw�]{�c}�bx�ew�l��u��n|�i��i��bp�Zs�]{�k�ň�Ǘ�͝�˖�͚�Ȋ{�{z�s}�tt�kw�hu�e�Y��Q��Pjt+d…
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | testimg.ppm | 4 …ZN@YM?YM?YM?XL>XL>WK=VJ<VJ<WK=WK=XL>PI?QI>SK>UL;XM9YM7YM7XM;WK=ULGYSWc_nmk�tt�|~���������������ȍ�ώ…
|
/AliOS-Things-master/hardware/chip/rtl872xd/ |
A D | ate.bin | 1942 …��t,t��t���t��t,�pt��t�t��t8t��tb�t��t;��t��t��t��t��t��tA��t��t��tt��t>t��t��t��t��t…
|