/external/pdfium/core/fxcodec/jbig2/ |
D | JBig2_GrdProc.cpp | 129 int bVal = pArithDecoder->Decode(&gbContext[CONTEXT]); in DecodeArithOpt3() local 130 cVal |= bVal << k; in DecodeArithOpt3() 132 (((CONTEXT & kOptConstant6[OPT]) << 1) | bVal | in DecodeArithOpt3() 145 int bVal = pArithDecoder->Decode(&gbContext[CONTEXT]); in DecodeArithOpt3() local 146 cVal1 |= bVal << (7 - k); in DecodeArithOpt3() 148 (((CONTEXT & kOptConstant6[OPT]) << 1) | bVal | in DecodeArithOpt3() 166 int bVal = pArithDecoder->Decode(&gbContext[CONTEXT]); in DecodeArithOpt3() local 167 cVal |= bVal << k; in DecodeArithOpt3() 169 (((CONTEXT & kOptConstant6[OPT]) << 1) | bVal | in DecodeArithOpt3() 180 int bVal = pArithDecoder->Decode(&gbContext[CONTEXT]); in DecodeArithOpt3() local [all …]
|
D | JBig2_GrrdProc.cpp | 80 int bVal = pArithDecoder->Decode(&grContext[CONTEXT]); in DecodeTemplate0Unopt() local 81 DecodeTemplate0UnoptSetPixel(GRREG.get(), lines, w, h, bVal); in DecodeTemplate0Unopt() 85 int bVal = GRREFERENCE->GetPixel(w, h); in DecodeTemplate0Unopt() local 86 if (!(TPGRON && (bVal == GRREFERENCE->GetPixel(w - 1, h - 1)) && in DecodeTemplate0Unopt() 87 (bVal == GRREFERENCE->GetPixel(w, h - 1)) && in DecodeTemplate0Unopt() 88 (bVal == GRREFERENCE->GetPixel(w + 1, h - 1)) && in DecodeTemplate0Unopt() 89 (bVal == GRREFERENCE->GetPixel(w - 1, h)) && in DecodeTemplate0Unopt() 90 (bVal == GRREFERENCE->GetPixel(w + 1, h)) && in DecodeTemplate0Unopt() 91 (bVal == GRREFERENCE->GetPixel(w - 1, h + 1)) && in DecodeTemplate0Unopt() 92 (bVal == GRREFERENCE->GetPixel(w, h + 1)) && in DecodeTemplate0Unopt() [all …]
|
D | JBig2_GrrdProc.h | 48 int bVal);
|
/external/clang/test/Rewriter/ |
D | rewrite-typeof.mm | 29 __typeof__(aVal) bVal; 30 char *a2t = (char *)@encode(__typeof__(bVal)); 31 __typeof__(bVal) cVal = bVal; 39 // CHECK-LP: int bVal;
|
D | rewrite-modern-typeof.mm | 31 __typeof__(aVal) bVal; 32 char *a2t = (char *)@encode(__typeof__(bVal)); 33 __typeof__(bVal) cVal = bVal; 47 // CHECK-LP: int bVal;
|
/external/lzma/CPP/Windows/ |
D | PropVariant.cpp | 200 SET_PROP_FUNC(Byte, VT_UI1, bVal) in SET_PROP_FUNC() argument 332 case VT_UI1: return MyCompare(bVal, a.bVal); in Compare()
|
D | PropVariantConv.cpp | 105 case VT_UI1: ConvertUInt32ToString(prop.bVal, dest); return; in ConvertPropVariantToShortString() 126 case VT_UI1: ConvertUInt32ToString(prop.bVal, dest); return; in ConvertPropVariantToShortString()
|
D | PropVariantConv.h | 31 case VT_UI1: value = prop.bVal; return true; in ConvertPropVariantToUInt64()
|
D | PropVariant.h | 64 CPropVariant(Byte value) { vt = VT_UI1; wReserved1 = 0; bVal = value; } in CPropVariant()
|
/external/skia/tests/ |
D | MatrixTest.cpp | 46 float bVal = b.get(i); in are_equal() local 48 int bValI = float_bits(bVal); in are_equal() 49 if (0 == aVal && 0 == bVal && aValI != bValI) { in are_equal() 52 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI); in are_equal() 60 float bVal = b.get(i); in are_equal() local 62 int bValI = float_bits(bVal); in are_equal() 66 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI); in are_equal()
|
/external/skqp/tests/ |
D | MatrixTest.cpp | 46 float bVal = b.get(i); in are_equal() local 48 int bValI = float_bits(bVal); in are_equal() 49 if (0 == aVal && 0 == bVal && aValI != bValI) { in are_equal() 52 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI); in are_equal() 60 float bVal = b.get(i); in are_equal() local 62 int bValI = float_bits(bVal); in are_equal() 66 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI); in are_equal()
|
/external/guava/guava/src/com/google/common/primitives/ |
D | Booleans.java | 64 int bVal = b ? trueValue : 0; in compare() local 65 return bVal - aVal; in compare()
|
/external/guava/android/guava/src/com/google/common/primitives/ |
D | Booleans.java | 64 int bVal = b ? trueValue : 0; in compare() local 65 return bVal - aVal; in compare()
|
/external/icu/icu4c/source/test/perf/collationperf/ |
D | collperf.cpp | 349 int bVal = 0; in ICURandomCmp() local 355 bVal += bVal*37 + *bsk++; in ICURandomCmp() 358 if (aVal == bVal) { in ICURandomCmp() 361 else if (aVal > bVal) { in ICURandomCmp()
|
/external/lzma/CPP/Common/ |
D | MyWindows.h | 179 UCHAR bVal; member
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/ |
D | Arrays.java | 295 int aVal = a[i] & 0xFF, bVal = b[i] & 0xFF; in compareUnsigned() local 296 if (aVal < bVal) in compareUnsigned() 300 if (aVal > bVal) in compareUnsigned()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | Arrays.java | 293 int aVal = a[i] & 0xFF, bVal = b[i] & 0xFF; in compareUnsigned() local 294 if (aVal < bVal) in compareUnsigned() 298 if (aVal > bVal) in compareUnsigned()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/raw/ |
D | Nat.java | 540 long c = 0, aVal = a & M, bVal = b & M; in mul31BothAdd() local 544 c += aVal * (x[i] & M) + bVal * (y[i] & M) + (z[zOff + i] & M); in mul31BothAdd()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/ |
D | Nat.java | 536 long c = 0, aVal = a & M, bVal = b & M; in mul31BothAdd() local 540 c += aVal * (x[i] & M) + bVal * (y[i] & M) + (z[zOff + i] & M); in mul31BothAdd()
|
/external/llvm/lib/DebugInfo/PDB/DIA/ |
D | DIARawSymbol.cpp | 43 Result.Value.UInt8 = V.bVal; in VariantFromVARIANT()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | OpenArchive.cpp | 926 case VT_UI1: size = prop.bVal; break; in Archive_GetItem_Size() 947 case VT_UI1: size = prop.bVal; break; in GetItemSize()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/DIA/ |
D | DIARawSymbol.cpp | 50 Result.Value.UInt8 = V.bVal; in VariantFromVARIANT()
|