/external/rust/crates/crc32fast/src/specialized/ |
D | aarch64.rs | 41 let mut c32 = !crc; in calculate() localVariable 44 c32 = pre_quad.iter().fold(c32, |acc, &b| arch::__crc32b(acc, b)); in calculate() 49 c32 = arch::__crc32d(c32, chunk[0]); in calculate() 50 c32 = arch::__crc32d(c32, chunk[1]); in calculate() 51 c32 = arch::__crc32d(c32, chunk[2]); in calculate() 52 c32 = arch::__crc32d(c32, chunk[3]); in calculate() 53 c32 = arch::__crc32d(c32, chunk[4]); in calculate() 54 c32 = arch::__crc32d(c32, chunk[5]); in calculate() 55 c32 = arch::__crc32d(c32, chunk[6]); in calculate() 56 c32 = arch::__crc32d(c32, chunk[7]); in calculate() [all …]
|
/external/libopus/silk/ |
D | macros.h | 51 #define silk_SMLAWB(a32, b32, c32) ((opus_int32)((a32) + (((b32) * (opus_int64)((opus_int16)(… argument 53 …WB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0… argument 65 #define silk_SMLAWT(a32, b32, c32) ((opus_int32)((a32) + (((b32) * ((opus_int64)(c32) >> 16))… argument 67 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x00… argument 74 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * (opus_int32)(… argument 80 #define silk_SMLABT(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * ((c32) >> 16)) argument 83 #define silk_SMLAL(a64, b32, c32) (silk_ADD64((a64), ((opus_int64)(b32) * (opus_int64)(c32))… argument 94 #define silk_SMLAWW(a32, b32, c32) ((opus_int32)((a32) + (((opus_int64)(b32) * (c32)) >> 16))) argument 96 #define silk_SMLAWW(a32, b32, c32) silk_MLA(silk_SMLAWB((a32), (b32), (c32)), (b32), silk_RSH… argument
|
D | MacroDebug.h | 289 static OPUS_INLINE opus_int32 silk_MLA_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file,… in silk_MLA_() argument 291 ret = a32 + b32 * c32; in silk_MLA_() 292 if ( (opus_int64)ret != (opus_int64)a32 + (opus_int64)b32 * (opus_int64)c32 ) in silk_MLA_() 294 fprintf (stderr, "silk_MLA(%d, %d, %d) in %s: line %d\n", a32, b32, c32, file, line); in silk_MLA_() 304 static OPUS_INLINE opus_int32 silk_MLA_uint_(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32, cha… in silk_MLA_uint_() argument 306 ret = a32 + b32 * c32; in silk_MLA_uint_() 307 if ( (opus_int64)ret != (opus_int64)a32 + (opus_int64)b32 * (opus_int64)c32 ) in silk_MLA_uint_() 309 fprintf (stderr, "silk_MLA_uint(%d, %d, %d) in %s: line %d\n", a32, b32, c32, file, line); in silk_MLA_uint_() 334 static OPUS_INLINE opus_int32 silk_SMLAWB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWB_() argument 336 ret = silk_ADD32( a32, silk_SMULWB( b32, c32 ) ); in silk_SMLAWB_() [all …]
|
D | MacroCount.h | 69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_MLA() argument 72 ret = a32 + b32 * c32; in silk_MLA() 77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ in silk_MLA_uint() argument 80 ret = a32 + b32 * c32; in silk_MLA_uint() 92 static OPUS_INLINE opus_int32 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWB() argument 95 … ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus_int32)((opus_… in silk_SMLAWB() 107 static OPUS_INLINE opus_int32 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWT() argument 110 ret = a32 + ((b32 >> 16) * (c32 >> 16)) + (((b32 & 0x0000FFFF) * ((c32 >> 16)) >> 16)); in silk_SMLAWT() 122 static OPUS_INLINE opus_int32 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLABB() argument 125 ret = a32 + (opus_int32)((opus_int16)b32) * (opus_int32)((opus_int16)c32); in silk_SMLABB() [all …]
|
D | SigProc_FIX.h | 433 #define silk_MLA(a32, b32, c32) silk_ADD32((a32),((b32) * (c32))) argument 436 #define silk_MLA_uint(a32, b32, c32) silk_MLA(a32, b32, c32) argument 442 #define silk_SMLATT(a32, b32, c32) silk_ADD32((a32),((b32) >> 16) * ((c32) >> 16)) argument 474 …ilk_SMLABB_ovflw(a32, b32, c32) (silk_ADD32_ovflw((a32) , ((opus_int32)((opus_int16)(b32))) * (… argument
|
/external/llvm-project/llvm/test/Transforms/SLPVectorizer/X86/ |
D | arith-div.ll | 17 @c32 = common global [16 x i32] zeroinitializer, align 64 35 ; SSE-NEXT: store <4 x i32> [[TMP5]], <4 x i32>* bitcast ([16 x i32]* @c32 to <4 x i32>*), align… 36 … <4 x i32>* bitcast (i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, i64 4) to <… 37 … <4 x i32>* bitcast (i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, i64 8) to <… 38 … <4 x i32>* bitcast (i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, i64 12) to … 50 ; SLM-NEXT: store <4 x i32> [[TMP5]], <4 x i32>* bitcast ([16 x i32]* @c32 to <4 x i32>*), align… 51 … <4 x i32>* bitcast (i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, i64 4) to <… 52 … <4 x i32>* bitcast (i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, i64 8) to <… 53 … <4 x i32>* bitcast (i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, i64 12) to … 61 ; AVX-NEXT: store <8 x i32> [[TMP3]], <8 x i32>* bitcast ([16 x i32]* @c32 to <8 x i32>*), align… [all …]
|
D | arith-fix.ll | 15 @c32 = common global [16 x i32] zeroinitializer, align 64 200 ; SSE-NEXT: store i32 [[R0]], i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, … 201 ; SSE-NEXT: store i32 [[R1]], i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, … 202 ; SSE-NEXT: store i32 [[R2]], i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, … 203 ; SSE-NEXT: store i32 [[R3]], i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, … 204 ; SSE-NEXT: store i32 [[R4]], i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, … 205 ; SSE-NEXT: store i32 [[R5]], i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, … 206 ; SSE-NEXT: store i32 [[R6]], i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, … 207 ; SSE-NEXT: store i32 [[R7]], i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, … 208 ; SSE-NEXT: store i32 [[R8]], i32* getelementptr inbounds ([16 x i32], [16 x i32]* @c32, i32 0, … [all …]
|
/external/llvm-project/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
D | utf_sanity_check.pass.cpp | 58 F32_8::intern_type c32; in main() local 116 assert(f32_8.in(mbs32_8, c8, c_c8p, c_c8p, &c32, &c32 + 1, c32p) == in main() 126 assert(c32p - &c32 == 1); in main() 127 assert(c32 == c32x); in main() 159 assert(f32_16.in(mbs32_16, c16c, c_c16cp, c_c16cp, &c32, &c32 + 1, in main() 165 assert(c32p - &c32 == 1); in main() 166 assert(c32 == c32x); in main() 211 assert(f32_8t.in(mbs32_8t, c8t, c_c8tp, c_c8tp, &c32, &c32 + 1, c32p) == in main() 221 assert(c32p - &c32 == 1); in main() 222 assert(c32 == c32x); in main()
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
D | utf_sanity_check.pass.cpp | 40 F32_8::intern_type c32; in main() local 77 assert(f32_8.in(mbs, c8, c_c8p, c_c8p, &c32, &c32+1, c32p) == F32_8::ok); in main() 86 assert(c32p-&c32 == 1); in main() 87 assert(c32 == c32x); in main() 118 assert(f32_16.in(mbs, c16c, c_c16cp, c_c16cp, &c32, &c32+1, c32p) == F32_8::ok); in main() 123 assert(c32p-&c32 == 1); in main() 124 assert(c32 == c32x); in main()
|
/external/icu/libicu/cts_headers/ |
D | utrie.h | 209 #define _UTRIE_GET(trie, data, c32, result, resultType) UPRV_BLOCK_MACRO_BEGIN { \ argument 210 if((uint32_t)(c32)<=0xffff) { \ 212 (result)=_UTRIE_GET_FROM_BMP(trie, data, c32); \ 213 } else if((uint32_t)(c32)<=0x10ffff) { \ 215 UChar __lead16=U16_LEAD(c32); \ 216 _UTRIE_GET_FROM_PAIR(trie, data, __lead16, c32, result, resultType); \ 338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument 349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
|
/external/icu/icu4c/source/common/ |
D | utrie.h | 209 #define _UTRIE_GET(trie, data, c32, result, resultType) UPRV_BLOCK_MACRO_BEGIN { \ argument 210 if((uint32_t)(c32)<=0xffff) { \ 212 (result)=_UTRIE_GET_FROM_BMP(trie, data, c32); \ 213 } else if((uint32_t)(c32)<=0x10ffff) { \ 215 UChar __lead16=U16_LEAD(c32); \ 216 _UTRIE_GET_FROM_PAIR(trie, data, __lead16, c32, result, resultType); \ 338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument 349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
|
/external/libpng/contrib/tools/ |
D | checksum-icc.c | 23 uLong c32 = crc32(0, NULL, 0); in read_one_file() local 40 c32 = crc32(c32, &b, 1); in read_one_file() 51 (unsigned long)a32, (unsigned long)c32, in read_one_file()
|
/external/icu/icu4c/source/test/intltest/ |
D | utxttest.cpp | 1032 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local 1033 TEST_ASSERT(c32 == c32Map[i]); in ErrorTest() 1040 UChar32 c32 = utext_next32From(ut, i); in ErrorTest() local 1041 TEST_ASSERT(c32 == c32Map[i]); in ErrorTest() 1049 UChar32 c32 = utext_previous32From(ut, i); in ErrorTest() local 1050 TEST_ASSERT(c32 == pr32Map[i]); in ErrorTest() 1065 UChar32 c32; in ErrorTest() local 1067 U16_GET(buf, 0, extractedLen-extractedLen, extractedLen, c32); in ErrorTest() 1068 TEST_ASSERT(c32 == c32Map[i]); in ErrorTest() 1102 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local [all …]
|
D | tokiter.cpp | 88 UChar32 c32 = line.unescapeAt(pos); in nextToken() local 89 if (c32 < 0) { in nextToken() 93 token.append(c32); in nextToken()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/data/ |
D | TokenIterator.java | 140 int c32 = Utility.unescapeAt(line, posref); in nextToken() local 141 if (c32 < 0) { in nextToken() 146 UTF16.append(buf, c32); in nextToken()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/ |
D | TokenIterator.java | 138 int c32 = Utility.unescapeAt(line, posref); in nextToken() local 139 if (c32 < 0) { in nextToken() 144 UTF16.append(buf, c32); in nextToken()
|
/external/lz4/tests/ |
D | Makefile | 414 ./datagen -g16KB | $(LZ4)c32 -9 | $(LZ4) -t 415 ./datagen -P10 | $(LZ4) -9B4 | $(LZ4)c32 -t 416 ./datagen | $(LZ4)c32 | $(LZ4) -t 417 ./datagen -g1M | $(LZ4) -3B5 | $(LZ4)c32 -t 418 ./datagen -g256MB | $(LZ4)c32 -vqB4D | $(LZ4) -qt 419 ./datagen -g1G -P90 | $(LZ4) | $(LZ4)c32 -t 420 ./datagen -g6GB | $(LZ4)c32 -vq9BD | $(LZ4) -qt 424 ./datagen -g16KB | $(LZ4)c32 -9 | $(LZ4)c32 -t 425 ./datagen | $(LZ4)c32 | $(LZ4)c32 -t 426 ./datagen -g256MB | $(LZ4)c32 -vqB4D | $(LZ4)c32 -qt [all …]
|
/external/skia/docs/examples/ |
D | Dither_b.cpp | 10 SkCanvas c32(bm32); in draw() local 19 c32.drawPaint(paint); in draw()
|
/external/llvm/test/CodeGen/X86/ |
D | pr23603.ll | 5 define void @f(i32* %x, i32 %c32, i32* %y) { 13 %c = icmp ne i32 %c32, 0
|
/external/libopus/silk/mips/ |
D | macros_mipsr1.h | 47 #define silk_SMLAWB(a32, b32, c32) ((a32) + silk_SMULWB(b32, c32)) argument
|
/external/icu/icu4c/source/io/ |
D | ustdio.cpp | 622 ufile_getch32(UFILE *f, UChar32 *c32) in ufile_getch32() argument 627 *c32 = U_EOF; in ufile_getch32() 637 *c32 = *(str->fPos)++; in ufile_getch32() 638 if (U_IS_LEAD(*c32)) { in ufile_getch32() 641 *c32 = U16_GET_SUPPLEMENTARY(*c32, c16); in ufile_getch32() 645 *c32 = U_EOF; in ufile_getch32()
|
/external/icu/icu4c/source/i18n/ |
D | uregex.cpp | 1468 UChar32 c32 = -1; in appendReplacement() local 1470 U16_GET(replacementText, 0, replIdx, replacementLength, c32); in appendReplacement() 1472 if (u_isdigit(c32)) { in appendReplacement() 1479 U16_GET(replacementText, 0, replIdx, replacementLength, c32); in appendReplacement() 1480 if (u_isdigit(c32) == FALSE) { in appendReplacement() 1484 int32_t digitVal = u_charDigitValue(c32); in appendReplacement() 1496 } else if (c32 == LEFTBRACKET) { in appendReplacement() 1500 while (U_SUCCESS(*status) && c32 != RIGHTBRACKET) { in appendReplacement() 1505 U16_NEXT(replacementText, replIdx, replacementLength, c32); in appendReplacement() 1506 if ((c32 >= 0x41 && c32 <= 0x5a) || // A..Z in appendReplacement() [all …]
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | pr23603.ll | 6 define void @f(i32* %x, i32 %c32, i32* %y) nounwind { 28 %c = icmp ne i32 %c32, 0
|
/external/llvm-project/mlir/integration_test/Dialect/Vector/CPU/ |
D | test-transfer-write.mlir | 45 %c32 = constant 32: index 46 %A = alloc(%c32) {alignment=64} : memref<?xf32> 47 scf.for %i = %c0 to %c32 step %c1 {
|
/external/clang/test/Sema/ |
D | attr-mode.c | 32 typedef _Complex double c32 __attribute((mode(SC))); 33 int c32_test[sizeof(c32) == 8 ? 1 : -1];
|