/third_party/skia/third_party/externals/libwebp/src/utils/ |
H A D | bit_reader_utils.h | 33 #define VP8Get(BR, L) VP8GetValue(BR, 1, L) 37 #define VP8GetValue(BR, N, L) VP8GetValue(BR, N) 38 #define VP8Get(BR, L) VP8GetValue(BR, 1, L) 39 #define VP8GetSignedValue(BR, N, L) VP8GetSignedValue(BR, N) 40 #define VP8GetBit(BR, P, L) VP8GetBit(BR, [all...] |
/third_party/libunwind/libunwind/src/ia64/ |
H A D | getcontext.S | 29 #define BR(n) (SC_BR + (n)*8) define 86 .mem.offset 8,0; st8.spill [r3] = r7, (BR(0) - GR(7)) // M3, bank 0 90 st8.spill [r2] = r6, (BR(1) - GR(6)) // M2, bank 1 91 st8 [r3] = rB0, (BR(4) - BR(0)) // M3, bank 1 96 st8 [r2] = rB1, (BR(2) - BR(1)) // M3, bank 0 100 st8 [r2] = rB2, (BR(3) - BR(2)) // M2, bank 1 101 st8 [r3] = rB4, (SC_LC - BR( [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | Object.cpp | 78 LLVMMemoryBufferRef LLVMBinaryCopyMemoryBuffer(LLVMBinaryRef BR) { in LLVMBinaryCopyMemoryBuffer() argument 79 auto Buf = unwrap(BR)->getMemoryBufferRef(); in LLVMBinaryCopyMemoryBuffer() 85 void LLVMDisposeBinary(LLVMBinaryRef BR) { in LLVMDisposeBinary() argument 86 delete unwrap(BR); in LLVMDisposeBinary() 89 LLVMBinaryType LLVMBinaryGetType(LLVMBinaryRef BR) { in LLVMBinaryGetType() argument 132 return BinaryTypeMapper::mapBinaryTypeToLLVMBinaryType(unwrap(BR)->getType()); in LLVMBinaryGetType() 135 LLVMBinaryRef LLVMMachOUniversalBinaryCopyObjectForArch(LLVMBinaryRef BR, in LLVMMachOUniversalBinaryCopyObjectForArch() argument 139 auto universal = cast<MachOUniversalBinary>(unwrap(BR)); in LLVMMachOUniversalBinaryCopyObjectForArch() 149 LLVMSectionIteratorRef LLVMObjectFileCopySectionIterator(LLVMBinaryRef BR) { in LLVMObjectFileCopySectionIterator() argument 150 auto OF = cast<ObjectFile>(unwrap(BR)); in LLVMObjectFileCopySectionIterator() 157 LLVMObjectFileIsSectionIteratorAtEnd(LLVMBinaryRef BR, LLVMSectionIteratorRef SI) LLVMObjectFileIsSectionIteratorAtEnd() argument 163 LLVMObjectFileCopySymbolIterator(LLVMBinaryRef BR) LLVMObjectFileCopySymbolIterator() argument 171 LLVMObjectFileIsSymbolIteratorAtEnd(LLVMBinaryRef BR, LLVMSymbolIteratorRef SI) LLVMObjectFileIsSymbolIteratorAtEnd() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
H A D | Object.h | 84 void LLVMDisposeBinary(LLVMBinaryRef BR); 95 LLVMMemoryBufferRef LLVMBinaryCopyMemoryBuffer(LLVMBinaryRef BR); 102 LLVMBinaryType LLVMBinaryGetType(LLVMBinaryRef BR); 115 LLVMBinaryRef LLVMMachOUniversalBinaryCopyObjectForArch(LLVMBinaryRef BR, 131 LLVMSectionIteratorRef LLVMObjectFileCopySectionIterator(LLVMBinaryRef BR); 138 LLVMBool LLVMObjectFileIsSectionIteratorAtEnd(LLVMBinaryRef BR, 152 LLVMSymbolIteratorRef LLVMObjectFileCopySymbolIterator(LLVMBinaryRef BR); 159 LLVMBool LLVMObjectFileIsSymbolIteratorAtEnd(LLVMBinaryRef BR,
|
/third_party/typescript/tests/baselines/reference/ |
H A D | mappedTypeModifiers.js | 43 type BR = { readonly a: { x: number }, readonly b: { x: string } }; 49 var b00: keyof BR; 63 var b03: BR; 66 var b03: { [P in keyof BR]: BR[P] } 67 var b03: Pick<BR, keyof BR>; 71 var b04: Partial<BR>;
|
/third_party/libphonenumber/cpp/test/phonenumbers/ |
H A D | shortnumberinfo_test.cc | 345 EXPECT_TRUE(short_info_.ConnectsToEmergencyNumber("911", RegionCode::BR())); in TEST_F() 346 EXPECT_TRUE(short_info_.ConnectsToEmergencyNumber("190", RegionCode::BR())); in TEST_F() 347 EXPECT_FALSE(short_info_.ConnectsToEmergencyNumber("999", RegionCode::BR())); in TEST_F() 352 EXPECT_FALSE(short_info_.ConnectsToEmergencyNumber("9111", RegionCode::BR())); in TEST_F() 353 EXPECT_FALSE(short_info_.ConnectsToEmergencyNumber("1900", RegionCode::BR())); in TEST_F() 354 EXPECT_FALSE(short_info_.ConnectsToEmergencyNumber("9996", RegionCode::BR())); in TEST_F() 419 EXPECT_TRUE(short_info_.IsEmergencyNumber("911", RegionCode::BR())); in TEST_F() 420 EXPECT_TRUE(short_info_.IsEmergencyNumber("190", RegionCode::BR())); in TEST_F() 421 EXPECT_FALSE(short_info_.IsEmergencyNumber("999", RegionCode::BR())); in TEST_F() 425 EXPECT_FALSE(short_info_.IsEmergencyNumber("9111", RegionCode::BR())); in TEST_F() [all...] |
H A D | test_util.h | 84 static const char* BR() { in BR() function in i18n::phonenumbers::RegionCode 85 return "BR"; in BR()
|
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/ |
H A D | ShortNumberInfoTest.java | 231 assertTrue(shortInfo.connectsToEmergencyNumber("911", RegionCode.BR)); in testConnectsToEmergencyNumber_BR() 232 assertTrue(shortInfo.connectsToEmergencyNumber("190", RegionCode.BR)); in testConnectsToEmergencyNumber_BR() 233 assertFalse(shortInfo.connectsToEmergencyNumber("999", RegionCode.BR)); in testConnectsToEmergencyNumber_BR() 238 assertFalse(shortInfo.connectsToEmergencyNumber("9111", RegionCode.BR)); in testConnectsToEmergencyNumberLongNumber_BR() 239 assertFalse(shortInfo.connectsToEmergencyNumber("1900", RegionCode.BR)); in testConnectsToEmergencyNumberLongNumber_BR() 240 assertFalse(shortInfo.connectsToEmergencyNumber("9996", RegionCode.BR)); in testConnectsToEmergencyNumberLongNumber_BR() 298 assertTrue(shortInfo.isEmergencyNumber("911", RegionCode.BR)); in testIsEmergencyNumber_BR() 299 assertTrue(shortInfo.isEmergencyNumber("190", RegionCode.BR)); in testIsEmergencyNumber_BR() 300 assertFalse(shortInfo.isEmergencyNumber("999", RegionCode.BR)); in testIsEmergencyNumber_BR() 304 assertFalse(shortInfo.isEmergencyNumber("9111", RegionCode.BR)); in testIsEmergencyNumberLongNumber_BR() [all...] |
H A D | RegionCode.java | 33 static final String BR = "BR"; field in RegionCode
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
H A D | shortnumberinfo_test.js | 319 assertTrue(shortInfo.connectsToEmergencyNumber('911', RegionCode.BR)); 320 assertTrue(shortInfo.connectsToEmergencyNumber('190', RegionCode.BR)); 321 assertFalse(shortInfo.connectsToEmergencyNumber('999', RegionCode.BR)); 326 assertFalse(shortInfo.connectsToEmergencyNumber('9111', RegionCode.BR)); 327 assertFalse(shortInfo.connectsToEmergencyNumber('1900', RegionCode.BR)); 328 assertFalse(shortInfo.connectsToEmergencyNumber('9996', RegionCode.BR)); 387 assertTrue(shortInfo.isEmergencyNumber('911', RegionCode.BR)); 388 assertTrue(shortInfo.isEmergencyNumber('190', RegionCode.BR)); 389 assertFalse(shortInfo.isEmergencyNumber('999', RegionCode.BR)); 393 assertFalse(shortInfo.isEmergencyNumber('9111', RegionCode.BR)); [all...] |
H A D | regioncodefortesting.js | 42 BR: 'BR',
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jcphuff.c | 883 emit_buffered_bits(entropy, BR_buffer, BR); \ 885 BR = 0; \ 897 BR_buffer[BR++] = (char)(temp & 1); \ 914 emit_buffered_bits(entropy, BR_buffer, BR); \ 916 BR = 0; \ 929 unsigned int BR; in METHODDEF() local 961 BR = 0; /* BR = count of buffered bits added now */ in METHODDEF() 991 if (r > 0 || BR > 0) { /* If there are trailing zeroes, */ in METHODDEF() 993 entropy->BE += BR; /* conca in METHODDEF() [all...] |
/third_party/mesa3d/src/freedreno/decode/scripts/ |
H A D | parse-submits.lua | 360 r.GRAS_SC_SCREEN_SCISSOR[0].BR.X + 1, 361 r.GRAS_SC_SCREEN_SCISSOR[0].BR.Y + 1, 373 r.GRAS_SC_SCREEN_SCISSOR[0].BR.X + 1, 374 r.GRAS_SC_SCREEN_SCISSOR[0].BR.Y + 1,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyInstrInfo.cpp | 136 case WebAssembly::BR: in analyzeBranch() 189 BuildMI(&MBB, DL, get(WebAssembly::BR)).addMBB(TBB); in insertBranch() 216 BuildMI(&MBB, DL, get(WebAssembly::BR)).addMBB(FBB); in insertBranch()
|
H A D | WebAssemblyLateEHPrepare.cpp | 158 BuildMI(MBB, TI, TI->getDebugLoc(), TII.get(WebAssembly::BR)) in replaceFuncletReturns() 313 BuildMI(EHPad, DL, TII.get(WebAssembly::BR)).addMBB(ElseMBB); in addExceptionExtraction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/ |
H A D | ResourceManager.cpp | 325 for (std::pair<ResourceRef, unsigned> &BR : BusyResources) { in cycleEvent() 326 if (BR.second) in cycleEvent() 327 BR.second--; in cycleEvent() 328 if (!BR.second) { in cycleEvent() 330 const ResourceRef &RR = BR.first; in cycleEvent()
|
/third_party/skia/samplecode/ |
H A D | SamplePatch.cpp | 82 const int BR = TR + nv; in eval_sheet() local 83 const int BL = BR + nu; in eval_sheet() 93 SkScalar x0 = UV * edge[TL].fX + uV * edge[TR].fX + Uv * edge[BL].fX + uv * edge[BR].fX; in eval_sheet() 94 SkScalar y0 = UV * edge[TL].fY + uV * edge[TR].fY + Uv * edge[BL].fY + uv * edge[BR].fY; in eval_sheet() 97 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0; in eval_sheet() 99 v * edge[BR+nu-iu].fY + (1 - u) * edge[BL+nv-iv].fY - y0; in eval_sheet()
|
/third_party/skia/tests/ |
H A D | SkDSLRuntimeEffectTest.cpp | 60 void test(GrColor TL, GrColor TR, GrColor BL, GrColor BR, in test() argument 87 GrColor expected[4] = {TL, TR, BL, BR}; in test() 94 TL, TR, BL, BR, actual[0], actual[1], actual[2], in test()
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | enum-bitwise-mixed.c | 16 BR = (__force bits) 0, enumerator
|
/third_party/curl/tests/ |
H A D | test1140.pl | 92 if($l =~ /^\.BR (.*)/) {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | PartialInlining.cpp | 559 BranchInst *BR = dyn_cast<BranchInst>(EntryBlock->getTerminator()); in computeOutliningInfo() local 560 if (!BR || BR->isUnconditional()) in computeOutliningInfo() 711 BranchInst *BR = dyn_cast<BranchInst>(E->getTerminator()); in hasProfileData() local 712 if (!BR || BR->isUnconditional()) in hasProfileData() 715 if (BR->extractProfMetadata(T, F)) in hasProfileData()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/ |
H A D | ARCInstrInfo.cpp | 137 static bool isUncondBranchOpcode(int Opc) { return Opc == ARC::BR; } in isUncondBranchOpcode() 383 BuildMI(&MBB, dl, get(ARC::BR)).addMBB(TBB); in insertBranch() 399 BuildMI(&MBB, dl, get(ARC::BR)).addMBB(FBB); in insertBranch()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | BitTracker.h | 129 bool operator== (const BitRef &BR) const { in operator ==() 131 return Reg == BR.Reg && (Reg == 0 || Pos == BR.Pos); in operator ==()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | ADCE.cpp | 211 auto *BR = dyn_cast<BranchInst>(Term); in isUnconditionalBranch() local 212 return BR && BR->isUnconditional(); in isUnconditionalBranch()
|
/third_party/curl/scripts/ |
H A D | nroff2cd | 133 elsif($d =~ /^\.BR (.*)/) {
|