/external/dropbear/libtomcrypt/notes/etc/ |
D | saferp_optimizer.c | 8 b2[0] = b[8]; b2[1] = b[11]; b2[2] = b[12]; b2[3] = b[15]; \ 9 b2[4] = b[2]; b2[5] = b[1]; b2[6] = b[6]; b2[7] = b[5]; \ 10 b2[8] = b[10]; b2[9] = b[9]; b2[10] = b[14]; b2[11] = b[13]; \ 11 b2[12] = b[0]; b2[13] = b[7]; b2[14] = b[4]; b2[15] = b[3]; memcpy(b, b2, sizeof(b)); 14 #define iSHUF(b, b2) \ argument 15 b2[0] = b[12]; b2[1] = b[5]; b2[2] = b[4]; b2[3] = b[15]; \ 16 b2[4] = b[14]; b2[5] = b[7]; b2[6] = b[6]; b2[7] = b[13]; \ 17 b2[8] = b[0]; b2[9] = b[9]; b2[10] = b[8]; b2[11] = b[1]; \ 18 b2[12] = b[2]; b2[13] = b[11]; b2[14] = b[10]; b2[15] = b[3]; memcpy(b, b2, sizeof(b)); 20 #define ROUND(b, i) \ argument [all …]
|
/external/chromium_org/v8/test/webkit/ |
D | dfg-inlining-reg-alloc.js | 29 function foo(a, b, c) { argument 31 this.b = b; 38 function bar(a, b) { argument 39 a += b; 40 a -= b; 41 b ^= a; 42 a += Math.log(b); 43 b += a; 44 b -= a; 45 a ^= b; [all …]
|
D | dfg-array-pop-side-effects-expected.txt | 29 PASS foo(a, b) is 45 30 PASS foo(a, b) is 45 31 PASS foo(a, b) is 45 32 PASS foo(a, b) is 45 33 PASS foo(a, b) is 45 34 PASS foo(a, b) is 45 35 PASS foo(a, b) is 45 36 PASS foo(a, b) is 45 37 PASS foo(a, b) is 45 38 PASS foo(a, b) is 45 [all …]
|
D | dfg-arguments-alias-one-block-overwrite-expected.txt | 29 PASS foo(a, b, c) is 6 30 PASS foo(a, b, c) is 6 31 PASS foo(a, b, c) is 6 32 PASS foo(a, b, c) is 6 33 PASS foo(a, b, c) is 6 34 PASS foo(a, b, c) is 6 35 PASS foo(a, b, c) is 6 36 PASS foo(a, b, c) is 6 37 PASS foo(a, b, c) is 6 38 PASS foo(a, b, c) is 6 [all …]
|
/external/guava/guava-tests/test/com/google/common/io/testdata/ |
D | simplifypathwithabsoluteprefixtests.txt | 1 /b/c/aaaaaaaaaa /b/c/aaaaaaaaaa 2 /b/c/aaaaaaaaa. /b/c/aaaaaaaaa. 3 /b/c/aaaaaaaaa/ /b/c/aaaaaaaaa 4 /b/c/aaaaaaaa.a /b/c/aaaaaaaa.a 5 /b/c/aaaaaaaa.. /b/c/aaaaaaaa.. 6 /b/c/aaaaaaaa./ /b/c/aaaaaaaa. 7 /b/c/aaaaaaaa/a /b/c/aaaaaaaa/a 8 /b/c/aaaaaaaa/. /b/c/aaaaaaaa 9 /b/c/aaaaaaaa// /b/c/aaaaaaaa 10 /b/c/aaaaaaa.aa /b/c/aaaaaaa.aa [all …]
|
/external/safe-iop/src/ |
D | safe_iop.c | 183 int8_t a, b; in T_add_s8() local 184 a=SCHAR_MIN; b=-1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_s8() 185 a=SCHAR_MAX; b=1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_s8() 186 a=10; b=11; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() 187 a=-10; b=-11; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() 188 a=SCHAR_MIN; b=SCHAR_MAX; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() 189 a=SCHAR_MIN+1; b=-1; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() 190 a=SCHAR_MAX/2; b=SCHAR_MAX/2; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() 196 int16_t a, b; in T_add_s16() local 197 a=SHRT_MIN; b=-1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_s16() [all …]
|
/external/clang/test/SemaCXX/ |
D | compare.cpp | 6 int test0(long a, unsigned long b) { in test0() argument 12 … (a == (unsigned long) b) + // expected-warning {{comparison of integers of different signs}} in test0() 13 (a == (unsigned int) b) + in test0() 14 (a == (unsigned short) b) + in test0() 15 (a == (unsigned char) b) + in test0() 16 ((long) a == b) + // expected-warning {{comparison of integers of different signs}} in test0() 17 ((int) a == b) + // expected-warning {{comparison of integers of different signs}} in test0() 18 ((short) a == b) + // expected-warning {{comparison of integers of different signs}} in test0() 19 ((signed char) a == b) + // expected-warning {{comparison of integers of different signs}} in test0() 20 …((long) a == (unsigned long) b) + // expected-warning {{comparison of integers of different signs… in test0() [all …]
|
/external/dropbear/libtomcrypt/src/ciphers/safer/ |
D | saferp.c | 47 #define ROUND(b, i) \ argument 48 b[0] = (safer_ebox[(b[0] ^ skey->saferp.K[i][0]) & 255] + skey->saferp.K[i+1][0]) & 255; \ 49 b[1] = safer_lbox[(b[1] + skey->saferp.K[i][1]) & 255] ^ skey->saferp.K[i+1][1]; \ 50 b[2] = safer_lbox[(b[2] + skey->saferp.K[i][2]) & 255] ^ skey->saferp.K[i+1][2]; \ 51 b[3] = (safer_ebox[(b[3] ^ skey->saferp.K[i][3]) & 255] + skey->saferp.K[i+1][3]) & 255; \ 52 b[4] = (safer_ebox[(b[4] ^ skey->saferp.K[i][4]) & 255] + skey->saferp.K[i+1][4]) & 255; \ 53 b[5] = safer_lbox[(b[5] + skey->saferp.K[i][5]) & 255] ^ skey->saferp.K[i+1][5]; \ 54 b[6] = safer_lbox[(b[6] + skey->saferp.K[i][6]) & 255] ^ skey->saferp.K[i+1][6]; \ 55 b[7] = (safer_ebox[(b[7] ^ skey->saferp.K[i][7]) & 255] + skey->saferp.K[i+1][7]) & 255; \ 56 b[8] = (safer_ebox[(b[8] ^ skey->saferp.K[i][8]) & 255] + skey->saferp.K[i+1][8]) & 255; \ [all …]
|
/external/libogg/src/ |
D | bitwise.c | 39 void oggpack_writeinit(oggpack_buffer *b){ in oggpack_writeinit() argument 40 memset(b,0,sizeof(*b)); in oggpack_writeinit() 41 b->ptr=b->buffer=_ogg_malloc(BUFFER_INCREMENT); in oggpack_writeinit() 42 b->buffer[0]='\0'; in oggpack_writeinit() 43 b->storage=BUFFER_INCREMENT; in oggpack_writeinit() 46 void oggpackB_writeinit(oggpack_buffer *b){ in oggpackB_writeinit() argument 47 oggpack_writeinit(b); in oggpackB_writeinit() 50 int oggpack_writecheck(oggpack_buffer *b){ in oggpack_writecheck() argument 51 if(!b->ptr || !b->storage)return -1; in oggpack_writecheck() 55 int oggpackB_writecheck(oggpack_buffer *b){ in oggpackB_writecheck() argument [all …]
|
/external/chromium_org/v8/test/webkit/fast/js/ |
D | function-toString-parentheses-expected.txt | 29 PASS compileAndSerialize('a * b * c') is 'a * b * c' 30 PASS compileAndSerialize('(a * b) * c') is '(a * b) * c' 31 PASS compileAndSerialize('a * (b * c)') is 'a * (b * c)' 32 PASS compileAndSerialize('a * b + c') is 'a * b + c' 33 PASS compileAndSerialize('(a * b) + c') is '(a * b) + c' 34 PASS compileAndSerialize('a * (b + c)') is 'a * (b + c)' 35 PASS compileAndSerialize('a * b - c') is 'a * b - c' 36 PASS compileAndSerialize('(a * b) - c') is '(a * b) - c' 37 PASS compileAndSerialize('a * (b - c)') is 'a * (b - c)' 38 PASS compileAndSerialize('a / b / c') is 'a / b / c' [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
D | riprel2.hex | 2 8b 20 8b 28 8b 36 8b 54 8b 61 8b 68 8b 75 8b 83 8b 91 8b [all …]
|
D | ssewidth.hex | 8 0b 14 0b 22 0b 30 0b 38 0b 46 0b 54 0b 60 0b 68 0b 74 0b [all …]
|
/external/clang/test/Sema/ |
D | compare.c | 10 int ints(long a, unsigned long b) { in ints() argument 16 … (a == (unsigned long) b) + // expected-warning {{comparison of integers of different signs}} in ints() 17 (a == (unsigned int) b) + in ints() 18 (a == (unsigned short) b) + in ints() 19 (a == (unsigned char) b) + in ints() 20 ((long) a == b) + // expected-warning {{comparison of integers of different signs}} in ints() 21 ((int) a == b) + // expected-warning {{comparison of integers of different signs}} in ints() 22 ((short) a == b) + // expected-warning {{comparison of integers of different signs}} in ints() 23 ((signed char) a == b) + // expected-warning {{comparison of integers of different signs}} in ints() 24 …((long) a == (unsigned long) b) + // expected-warning {{comparison of integers of different signs… in ints() [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/ |
D | xdflong.hex | 161 0b 1049 9b 1316 0b 1332 0b 1348 0b 3469 0b 3477 0b 3485 0b 3493 0b 3501 0b [all …]
|
/external/clang/test/CodeGen/ |
D | avx2-builtins.c | 33 __m256i test_mm256_packs_epi16(__m256i a, __m256i b) { in test_mm256_packs_epi16() argument 35 return _mm256_packs_epi16(a, b); in test_mm256_packs_epi16() 38 __m256i test_mm256_packs_epi32(__m256i a, __m256i b) { in test_mm256_packs_epi32() argument 40 return _mm256_packs_epi32(a, b); in test_mm256_packs_epi32() 43 __m256i test_mm256_packs_epu16(__m256i a, __m256i b) { in test_mm256_packs_epu16() argument 45 return _mm256_packus_epi16(a, b); in test_mm256_packs_epu16() 48 __m256i test_mm256_packs_epu32(__m256i a, __m256i b) { in test_mm256_packs_epu32() argument 50 return _mm256_packus_epi32(a, b); in test_mm256_packs_epu32() 53 __m256i test_mm256_add_epi8(__m256i a, __m256i b) { in test_mm256_add_epi8() argument 55 return _mm256_add_epi8(a, b); in test_mm256_add_epi8() [all …]
|
D | mmx-builtins.c | 10 __m64 test1(__m64 a, __m64 b) { in test1() argument 12 return _mm_hadd_pi16(a, b); in test1() 15 __m64 test2(__m64 a, __m64 b) { in test2() argument 17 return _mm_hadd_pi32(a, b); in test2() 20 __m64 test3(__m64 a, __m64 b) { in test3() argument 22 return _mm_hadds_pi16(a, b); in test3() 25 __m64 test4(__m64 a, __m64 b) { in test4() argument 27 return _mm_hsub_pi16(a, b); in test4() 30 __m64 test5(__m64 a, __m64 b) { in test5() argument 32 return _mm_hsub_pi32(a, b); in test5() [all …]
|
D | arm_neon_intrinsics.c | 11 int8x8_t test_vaba_s8(int8x8_t a, int8x8_t b, int8x8_t c) { in test_vaba_s8() argument 12 return vaba_s8(a, b, c); in test_vaba_s8() 17 int16x4_t test_vaba_s16(int16x4_t a, int16x4_t b, int16x4_t c) { in test_vaba_s16() argument 18 return vaba_s16(a, b, c); in test_vaba_s16() 23 int32x2_t test_vaba_s32(int32x2_t a, int32x2_t b, int32x2_t c) { in test_vaba_s32() argument 24 return vaba_s32(a, b, c); in test_vaba_s32() 29 uint8x8_t test_vaba_u8(uint8x8_t a, uint8x8_t b, uint8x8_t c) { in test_vaba_u8() argument 30 return vaba_u8(a, b, c); in test_vaba_u8() 35 uint16x4_t test_vaba_u16(uint16x4_t a, uint16x4_t b, uint16x4_t c) { in test_vaba_u16() argument 36 return vaba_u16(a, b, c); in test_vaba_u16() [all …]
|
/external/llvm/test/MC/AArch64/ |
D | neon-bitwise-instructions.s | 8 and v0.8b, v1.8b, v2.8b 9 and v0.16b, v1.16b, v2.16b 18 orr v0.8b, v1.8b, v2.8b 19 orr v0.16b, v1.16b, v2.16b 28 eor v0.8b, v1.8b, v2.8b 29 eor v0.16b, v1.16b, v2.16b 39 bit v0.8b, v1.8b, v2.8b 40 bit v0.16b, v1.16b, v2.16b 41 bif v0.8b, v1.8b, v2.8b 42 bif v0.16b, v1.16b, v2.16b [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | bitset.h | 55 #define BITSET_BITWORD(b) ((b) / BITSET_WORDBITS) argument 56 #define BITSET_BIT(b) (1 << ((b) % BITSET_WORDBITS)) argument 60 #define BITSET_TEST(x, b) ((x)[BITSET_BITWORD(b)] & BITSET_BIT(b)) argument 61 #define BITSET_SET(x, b) ((x)[BITSET_BITWORD(b)] |= BITSET_BIT(b)) argument 62 #define BITSET_CLEAR(x, b) ((x)[BITSET_BITWORD(b)] &= ~BITSET_BIT(b)) argument 64 #define BITSET_MASK(b) ((b) == BITSET_WORDBITS ? ~0 : BITSET_BIT(b) - 1) argument 65 #define BITSET_RANGE(b, e) (BITSET_MASK((e) + 1) & ~BITSET_MASK(b)) argument 69 #define BITSET_TEST_RANGE(x, b, e) \ argument 70 (BITSET_BITWORD(b) == BITSET_BITWORD(e) ? \ 71 ((x)[BITSET_BITWORD(b)] & BITSET_RANGE(b, e)) : \ [all …]
|
/external/mesa3d/src/mesa/main/ |
D | bitset.h | 55 #define BITSET_BITWORD(b) ((b) / BITSET_WORDBITS) argument 56 #define BITSET_BIT(b) (1 << ((b) % BITSET_WORDBITS)) argument 60 #define BITSET_TEST(x, b) ((x)[BITSET_BITWORD(b)] & BITSET_BIT(b)) argument 61 #define BITSET_SET(x, b) ((x)[BITSET_BITWORD(b)] |= BITSET_BIT(b)) argument 62 #define BITSET_CLEAR(x, b) ((x)[BITSET_BITWORD(b)] &= ~BITSET_BIT(b)) argument 64 #define BITSET_MASK(b) ((b) == BITSET_WORDBITS ? ~0 : BITSET_BIT(b) - 1) argument 65 #define BITSET_RANGE(b, e) (BITSET_MASK((e) + 1) & ~BITSET_MASK(b)) argument 69 #define BITSET_TEST_RANGE(x, b, e) \ argument 70 (BITSET_BITWORD(b) == BITSET_BITWORD(e) ? \ 71 ((x)[BITSET_BITWORD(b)] & BITSET_RANGE(b, e)) : \ [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | LayoutUnit.h | 247 inline bool operator<=(const LayoutUnit& a, const LayoutUnit& b) 249 return a.rawValue() <= b.rawValue(); 252 inline bool operator<=(const LayoutUnit& a, float b) 254 return a.toFloat() <= b; 257 inline bool operator<=(const LayoutUnit& a, int b) 259 return a <= LayoutUnit(b); 262 inline bool operator<=(const float a, const LayoutUnit& b) 264 return a <= b.toFloat(); 267 inline bool operator<=(const int a, const LayoutUnit& b) 269 return LayoutUnit(a) <= b; [all …]
|
/external/bison/lib/ |
D | intprops.h | 110 #define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485) argument 165 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \ argument 166 ((b) < 0 \ 167 ? (a) < (min) - (b) \ 168 : (max) - (b) < (a)) 172 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \ argument 173 ((b) < 0 \ 174 ? (max) + (b) < (a) \ 175 : (a) < (min) + (b)) 188 #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \ argument [all …]
|
/external/chromium_org/third_party/openssl/openssl/crypto/bio/ |
D | bio.h | 233 void BIO_set_flags(BIO *b, int flags); 234 int BIO_test_flags(const BIO *b, int flags); 235 void BIO_clear_flags(BIO *b, int flags); 237 #define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) argument 238 #define BIO_set_retry_special(b) \ argument 239 BIO_set_flags(b, (BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY)) 240 #define BIO_set_retry_read(b) \ argument 241 BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY)) 242 #define BIO_set_retry_write(b) \ argument 243 BIO_set_flags(b, (BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY)) [all …]
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
D | bio.h | 233 void BIO_set_flags(BIO *b, int flags); 234 int BIO_test_flags(const BIO *b, int flags); 235 void BIO_clear_flags(BIO *b, int flags); 237 #define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) argument 238 #define BIO_set_retry_special(b) \ argument 239 BIO_set_flags(b, (BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY)) 240 #define BIO_set_retry_read(b) \ argument 241 BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY)) 242 #define BIO_set_retry_write(b) \ argument 243 BIO_set_flags(b, (BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY)) [all …]
|
/external/openssl/crypto/bio/ |
D | bio.h | 233 void BIO_set_flags(BIO *b, int flags); 234 int BIO_test_flags(const BIO *b, int flags); 235 void BIO_clear_flags(BIO *b, int flags); 237 #define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) argument 238 #define BIO_set_retry_special(b) \ argument 239 BIO_set_flags(b, (BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY)) 240 #define BIO_set_retry_read(b) \ argument 241 BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY)) 242 #define BIO_set_retry_write(b) \ argument 243 BIO_set_flags(b, (BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY)) [all …]
|