/AliOS-Things-master/components/freetype/src/gzip/ |
A D | inflate.c | 41 } check; /* if CHECK, check values to compare */ member 196 z->state->sub.check.need = (uLong)NEXTBYTE << 24; in inflate() 200 z->state->sub.check.need += (uLong)NEXTBYTE << 16; in inflate() 204 z->state->sub.check.need += (uLong)NEXTBYTE << 8; in inflate() 208 z->state->sub.check.need += (uLong)NEXTBYTE; in inflate() 209 z->adler = z->state->sub.check.need; in inflate() 239 z->state->sub.check.need = (uLong)NEXTBYTE << 24; in inflate() 243 z->state->sub.check.need += (uLong)NEXTBYTE << 16; in inflate() 247 z->state->sub.check.need += (uLong)NEXTBYTE << 8; in inflate() 251 z->state->sub.check.need += (uLong)NEXTBYTE; in inflate() [all …]
|
A D | infutil.c | 46 z->adler = s->check = (*s->checkfn)(s->check, q, n); in inflate_flush() 72 z->adler = s->check = (*s->checkfn)(s->check, q, n); in inflate_flush()
|
/AliOS-Things-master/components/py_engine/tests/float/ |
A D | string_format_modulo2_intbig.py | 13 check = abs(float(s) - num) 15 check /= num 16 if check > 1e-6: 17 print("FAIL", num_str, fmt, s, len(s), check)
|
A D | string_format_modulo2.py | 13 check = abs(float(s) - num) 15 check /= num 16 if check > 1e-6: 17 print("FAIL", num_str, fmt, s, len(s), check)
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | unboundlocal.py | 12 def check(f): function 18 check(f1) 19 check(f2)
|
/AliOS-Things-master/components/py_engine/external/unzip/src/ |
A D | inflate.c | 412 # define UPDATE(check, buf, len) \ argument 413 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) 415 # define UPDATE(check, buf, len) adler32(check, buf, len) argument 420 # define CRC2(check, word) \ argument 424 check = crc32(check, hbuf, 2); \ 427 # define CRC4(check, word) \ argument 433 check = crc32(check, hbuf, 4); \ 730 state->check = crc32(state->check, next, copy); 751 state->check = crc32(state->check, next, copy); 772 state->check = crc32(state->check, next, copy); [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | inflate.c | 451 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) 453 # define UPDATE(check, buf, len) adler32(check, buf, len) argument 458 # define CRC2(check, word) \ argument 462 check = crc32(check, hbuf, 2); \ 465 # define CRC4(check, word) \ argument 471 check = crc32(check, hbuf, 4); \ 769 state->check = crc32(state->check, next, copy); 790 state->check = crc32(state->check, next, copy); 811 state->check = crc32(state->check, next, copy); 1528 int check; [all …]
|
/AliOS-Things-master/components/py_engine/tests/perf_bench/ |
A D | bm_fannkuch.py | 14 check = 0 21 if check < 30: 22 check += 1
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | pngrio.c | 52 size_t check; in png_default_read_data() local 60 check = fread(data, 1, length, png_voidcast(png_FILE_p, png_ptr->io_ptr)); in png_default_read_data() 62 if (check != length) in png_default_read_data()
|
A D | pngwio.c | 53 size_t check; in png_default_write_data() local 58 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr)); in png_default_write_data() 60 if (check != length) in png_default_write_data()
|
A D | configure.ac | 358 [Enable ARM NEON optimizations: =no/off, check, api, yes/on:] 359 [no/off: disable the optimizations; check: use internal checking code] 370 check) 379 AC_MSG_WARN([--enable-arm-neon: please specify 'check' or 'api', if] 404 [Enable MIPS MSA optimizations: =no/off, check, api, yes/on:] 405 [no/off: disable the optimizations; check: use internal checking code] 416 check) 425 AC_MSG_WARN([--enable-mips-msa: please specify 'check' or 'api', if] 484 [Enable POWERPC VSX optimizations: =no/off, check, api, yes/on:] 485 [no/off: disable the optimizations; check: use internal checking code] [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/cmsis-dsp/Source/FilteringFunctions/ |
A D | arm_conv_partial_f32.c | 106 uint32_t j, k, count = 0u, blkCnt, check; in arm_conv_partial_f32() local 147 check = firstIndex + numPoints; in arm_conv_partial_f32() 148 blockSize3 = ((int32_t)check > (int32_t)srcALen) ? (int32_t)check - (int32_t)srcALen : 0; in arm_conv_partial_f32() 151 blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : in arm_conv_partial_f32() 153 blockSize2 = ((int32_t) check - blockSize3) - in arm_conv_partial_f32()
|
A D | arm_conv_partial_q31.c | 77 uint32_t j, k, count, check, blkCnt; in arm_conv_partial_q31() local 118 check = firstIndex + numPoints; in arm_conv_partial_q31() 119 blockSize3 = ((int32_t)check > (int32_t)srcALen) ? (int32_t)check - (int32_t)srcALen : 0; in arm_conv_partial_q31() 122 blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : in arm_conv_partial_q31() 124 blockSize2 = (int32_t) check - ((blockSize3 + blockSize1) + in arm_conv_partial_q31()
|
A D | arm_conv_partial_fast_q31.c | 72 uint32_t j, k, count, check, blkCnt; in arm_conv_partial_fast_q31() local 113 check = firstIndex + numPoints; in arm_conv_partial_fast_q31() 114 blockSize3 = ((int32_t)check > (int32_t)srcALen) ? (int32_t)check - (int32_t)srcALen : 0; in arm_conv_partial_fast_q31() 117 blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : in arm_conv_partial_fast_q31() 119 blockSize2 = (int32_t) check - ((blockSize3 + blockSize1) + in arm_conv_partial_fast_q31()
|
A D | arm_conv_partial_fast_q15.c | 74 uint32_t j, k, count, check, blkCnt; in arm_conv_partial_fast_q15() local 114 check = firstIndex + numPoints; in arm_conv_partial_fast_q15() 115 blockSize3 = ((int32_t)check > (int32_t)srcALen) ? (int32_t)check - (int32_t)srcALen : 0; in arm_conv_partial_fast_q15() 118 blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : in arm_conv_partial_fast_q15() 120 blockSize2 = (int32_t) check - ((blockSize3 + blockSize1) + in arm_conv_partial_fast_q15() 720 uint32_t j, k, count, check, blkCnt; in arm_conv_partial_fast_q15() 761 check = firstIndex + numPoints; in arm_conv_partial_fast_q15() 762 blockSize3 = ((int32_t)check > (int32_t)srcALen) ? (int32_t)check - (int32_t)srcALen : 0; in arm_conv_partial_fast_q15() 765 blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : in arm_conv_partial_fast_q15() 767 blockSize2 = ((int32_t) check - blockSize3) - in arm_conv_partial_fast_q15()
|
A D | arm_conv_partial_q15.c | 81 uint32_t j, k, count, check, blkCnt; in arm_conv_partial_q15() local 121 check = firstIndex + numPoints; in arm_conv_partial_q15() 122 blockSize3 = ((int32_t)check > (int32_t)srcALen) ? (int32_t)check - (int32_t)srcALen : 0; in arm_conv_partial_q15() 125 blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : in arm_conv_partial_q15() 127 blockSize2 = (int32_t) check - ((blockSize3 + blockSize1) + in arm_conv_partial_q15()
|
A D | arm_conv_partial_q7.c | 81 uint32_t j, k, count, check, blkCnt; in arm_conv_partial_q7() local 122 check = firstIndex + numPoints; in arm_conv_partial_q7() 123 blockSize3 = ((int32_t)check > (int32_t)srcALen) ? (int32_t)check - (int32_t)srcALen : 0; in arm_conv_partial_q7() 126 blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : in arm_conv_partial_q7() 128 blockSize2 = (int32_t) check - ((blockSize3 + blockSize1) + in arm_conv_partial_q7()
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/visupng/ |
A D | PngFile.c | 415 size_t check; local 420 check = fread(data, 1, length, (FILE *)png_ptr->io_ptr); 422 if (check != length) 431 png_uint_32 check; local 433 check = fwrite(data, 1, length, (FILE *)(png_ptr->io_ptr)); 434 if (check != length)
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngminus/ |
A D | CHANGES.txt | 7 1.2 - 2017.04.22 - Add buffer-size check 8 1.3 - 2017.08.24 - Fix potential overflow in buffer-size check
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | configure.ac | 76 int testfunction (int arg1, int * arg2); /* check prototypes */ 77 struct methods_struct { /* check method-pointer declarations */ 82 int testfunction (int arg1, int * arg2) /* check definitions */ 84 int test2function (void) /* check void arg list */ 161 typedef void * void_ptr; /* check void * */ 162 #ifdef HAVE_PROTOTYPES /* check ptr to function returning void */ 168 #ifdef HAVE_PROTOTYPES /* check void function result */ 176 char * locptr = (char *) arg1; /* check casting to and from void * */ 178 (*arg2) (1, 2); /* check call of fcn returning void */ 201 # We cannot check for bogus warnings, but at least we can check for errors
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/amebad/lib/ |
A D | release_note.txt | 12 1. Fix a bug of pairing distrbution check. 68 2. Add size check with allocate memory.
|
/AliOS-Things-master/components/SDL2/src/hidapi/m4/ |
A D | ax_pthread.m4 | 93 # We used to check for pthread.h first, but this fails if pthread.h 97 # First of all, check if the user has set any of the PTHREAD_LIBS, 116 # We must check for the threads library under a number of different 131 # pthreads: AIX (must check this before -lpthread) 141 # doesn't hurt to check since this sometimes defines pthreads too; 155 # a function called by this macro, so we could check for that, but 201 # We check for pthread_join because it is in -lpthread on IRIX 202 # while pthread_create is in libc. We check for pthread_attr_init 203 # due to DEC craziness with -lpthreads. We check for
|
/AliOS-Things-master/hardware/chip/rtl872xd/aos/ |
A D | aos_debug.h | 27 #if (!defined(check)) 28 #define check(X) \ macro
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/m4/ |
A D | ax_pthread.m4 | 93 # We used to check for pthread.h first, but this fails if pthread.h 97 # First of all, check if the user has set any of the PTHREAD_LIBS, 116 # We must check for the threads library under a number of different 131 # pthreads: AIX (must check this before -lpthread) 141 # doesn't hurt to check since this sometimes defines pthreads too; 155 # a function called by this macro, so we could check for that, but 215 # We check for pthread_join because it is in -lpthread on IRIX 216 # while pthread_create is in libc. We check for pthread_attr_init 217 # due to DEC craziness with -lpthreads. We check for
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/ |
A D | README.txt | 5 for testing the library via "make check".
|