/PHP-8.1/ext/standard/tests/array/ |
H A D | range_variation.phpt | 30 *** Testing range() with various low and high values *** 71 -- creating an array with low = 'ABCD' and high = '' -- 375 -- creating an array with low = '' and high = '' -- 381 -- creating an array with low = '' and high = '' -- 387 -- creating an array with low = '' and high = '' -- 441 -- creating an array with low = '' and high = '' -- 447 -- creating an array with low = '' and high = '' -- 453 -- creating an array with low = '' and high = '' -- 507 -- creating an array with low = '' and high = '' -- 513 -- creating an array with low = '' and high = '' -- [all …]
|
H A D | range_errors.phpt | 10 echo "\n-- Testing ( (low < high) && (step = 0) ) --\n"; 36 echo "\n\n-- Testing ( (low < high) && (high-low < step) ) --\n"; 43 echo "\n\n-- Testing ( (low > high) && (low-high < step) ) --\n"; 50 echo "\n\n-- Testing ( (low < high) && (high-low < step) ) for characters --\n"; 57 echo "\n\n-- Testing ( (low > high) && (low-high < step) ) for characters --\n"; 97 -- Testing ( (low < high) && (step = 0) ) -- 102 -- Testing ( (low > high) && (step = 0) ) -- 107 -- Testing ( (low < high) && (high-low < step) ) -- 111 -- Testing ( (low > high) && (low-high < step) ) -- 115 -- Testing ( (low < high) && (high-low < step) ) for characters -- [all …]
|
H A D | range.phpt | 11 echo "-- An array of elements from low to high --\n"; 13 echo "\n-- An array of elements from high to low --\n"; 17 echo "-- An array of elements from low to high --\n"; 19 echo "\n-- An array of elements from high to low --\n"; 23 echo "-- An array of elements from low to high --\n"; 55 -- An array of elements from low to high -- 79 -- An array of elements from high to low -- 104 -- An array of elements from low to high -- 128 -- An array of elements from high to low -- 153 -- An array of elements from low to high -- [all …]
|
H A D | bug41121.phpt | 21 // low > high
|
/PHP-8.1/ext/iconv/tests/ |
H A D | bug74230.phpt | 9 $low = "\xED\xBD\xA2"; // codepoint DF62 10 $pair = $high.$low; 13 @\iconv('UTF-8', 'UTF-8', $low) === false,
|
/PHP-8.1/ext/gd/libgd/ |
H A D | gd_intern.h | 11 #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) argument
|
H A D | gd_io.c | 100 int high = 0, low = 0; in gdGetWordLSB() local 101 low = (ctx->getC) (ctx); in gdGetWordLSB() 102 if (low == EOF) { in gdGetWordLSB() 112 *result = (high << 8) | low; in gdGetWordLSB()
|
/PHP-8.1/ext/hash/sha3/generic32lc/ |
H A D | KeccakP-1600-inplace32BI.c | 38 temp0 = (low); \ 82 low = temp0; \ 93 UINT32 low, high; in KeccakP1600_SetBytesInLaneToZero() local 104 low = laneAsBytes[0] in KeccakP1600_SetBytesInLaneToZero() 129 UINT32 low, high; in KeccakP1600_AddByte() local 138 low = 0; in KeccakP1600_AddByte() 149 UINT32 low, high; in KeccakP1600_AddBytesInLane() local 183 UINT32 low; in KeccakP1600_AddLanes() local 239 UINT32 low; in KeccakP1600_OverwriteLanes() local 327 UINT32 low; in KeccakP1600_ExtractLanes() local [all …]
|
/PHP-8.1/ext/standard/ |
H A D | flock_compat.c | 106 DWORD low = 0xFFFFFFFF, high = 0xFFFFFFFF; 116 UnlockFileEx(hdl, 0, low, high, &offset); 121 0, low, high, &offset)) 126 0, low, high, &offset))
|
H A D | array.c | 2738 unsigned char low, high; local 2762 for (; low >= high; low -= (unsigned int)lstep) { 2778 for (; low <= high; low += (unsigned int)lstep) { 2788 ZVAL_CHAR(&tmp, low); 2792 double low, high, element; local 2795 low = zval_get_double(zlow); 2812 for (i = 0, element = low; i < size && element >= high; ++i, element = low - (i * step)) { 2833 ZVAL_DOUBLE(&tmp, low); 2837 zend_long low, high; local 2842 low = zval_get_long(zlow); [all …]
|
/PHP-8.1/Zend/tests/ |
H A D | dval_to_lval_64.phpt | 2 zend_dval_to_lval preserves low bits (64 bit long)
|
H A D | dval_to_lval_32.phpt | 2 zend_dval_to_lval preserves low bits (32 bit long)
|
/PHP-8.1/ext/sodium/ |
H A D | README.md | 6 A simple, low-level PHP extension for
|
/PHP-8.1/sapi/fpm/tests/ |
H A D | log-bwd-limit-64-too-low-error.phpt | 2 FPM: Buffered worker output decorated log with limit 64 fails because it is too low
|
/PHP-8.1/ext/mbstring/tests/ |
H A D | mb_str_split_utf8_utf16.phpt | 24 $utf16be_char_bad = pack("H*", "dc00dc00"); /* this char is illegal because it starts from low surr… 25 $utf16le_char_bad = pack("H*", "00dc00dc"); /* this char is illegal because it starts from low surr…
|
H A D | cp5022x_encoding.phpt | 20 * we get the low bit of the ku number by seeing which one it is. */
|
/PHP-8.1/ext/phar/tests/ |
H A D | phar_metadata_write3.phpt | 46 echo "Calling getMetadata with too low max_depth\n"; 78 Calling getMetadata with too low max_depth
|
/PHP-8.1/ext/standard/tests/strings/ |
H A D | crypt_sha512.phpt | 44 'the number of rounds is too low',
|
H A D | crypt_sha256.phpt | 44 'the number of rounds is too low',
|
/PHP-8.1/ext/opcache/jit/ |
H A D | README.md | 20 but does assume good, and very low-level development knowledge of target
|
/PHP-8.1/ext/odbc/tests/ |
H A D | bug60616.phpt | 22 ini_set("odbc.defaultlrl", 4); // Set artificially low
|
/PHP-8.1/TSRM/ |
H A D | tsrm_win32.c | 655 DWORD low = (DWORD)size; in shmget() local 658 DWORD low = size; in shmget() 660 …shm_handle = CreateFileMapping(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, high, low, key == IPC_P… in shmget()
|
/PHP-8.1/ext/filter/ |
H A D | sanitizing_filters.c | 62 …url(zval *value, const unsigned char* chars, const int char_len, int high, int low, int encode_nul) in php_filter_encode_url() argument
|
/PHP-8.1/ext/fileinfo/tests/ |
H A D | magic | 2946 # there were many low-quality sigs, i.e. easy to trigger false positives. 3022 # skip keyword with low entropy 6461 # element range low,high x y z like xlow=0 08010000h 01080000h 17562 # skip old Emacs RMAIL BABYL ./mail.news by checking for low header size 19537 # skip ASCII text starting with DSDT by looking for valid "low" revision 20174 # skip MUNCHIE.PC1 BOARD.PC1 ENEMIES.PC1 by test for low version number 20919 # yes, this is separate from the low-order magic number bit 22041 # skip ASCII text by checking for low header length 22806 # The low-order word is MINIDUMP_VERSION 0xA793 27741 # skip BUISSON.13 GUITAR1 by looking for low version number [all …]
|
H A D | magic私はガラスを食べられます | 2946 # there were many low-quality sigs, i.e. easy to trigger false positives. 3022 # skip keyword with low entropy 6461 # element range low,high x y z like xlow=0 08010000h 01080000h 17562 # skip old Emacs RMAIL BABYL ./mail.news by checking for low header size 19537 # skip ASCII text starting with DSDT by looking for valid "low" revision 20174 # skip MUNCHIE.PC1 BOARD.PC1 ENEMIES.PC1 by test for low version number 20919 # yes, this is separate from the low-order magic number bit 22041 # skip ASCII text by checking for low header length 22806 # The low-order word is MINIDUMP_VERSION 0xA793 27741 # skip BUISSON.13 GUITAR1 by looking for low version number [all …]
|