/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerMutate.cpp | 178 DictionaryEntry &DE) { in ApplyDictionaryEntry() 179 const Word &W = DE.GetW(); in ApplyDictionaryEntry() 180 bool UsePositionHint = DE.HasPositionHint() && in ApplyDictionaryEntry() 181 DE.GetPositionHint() + W.size() < Size && in ApplyDictionaryEntry() 185 size_t Idx = UsePositionHint ? DE.GetPositionHint() : Rand(Size + 1); in ApplyDictionaryEntry() 191 size_t Idx = UsePositionHint ? DE.GetPositionHint() : Rand(Size - W.size()); in ApplyDictionaryEntry() 201 // input and if it succeeds it creates a DE with a position hint. 202 // Otherwise it creates a DE with one of the arguments w/o a position hint. 231 DictionaryEntry DE(W); in MakeDictionaryEntryFromCMP() 232 return DE; in MakeDictionaryEntryFromCMP() 176 ApplyDictionaryEntry(uint8_t *Data, size_t Size, size_t MaxSize, DictionaryEntry &DE) ApplyDictionaryEntry() argument 238 DictionaryEntry DE; Mutate_AddWordFromTORC() local [all...] |
H A D | FuzzerDictionary.h | 91 return std::any_of(begin(), end(), [&](const DictionaryEntry &DE) { in ContainsWord() 92 return DE.GetW() == W; in ContainsWord() 95 const DictionaryEntry *begin() const { return &DE[0]; } in begin() 99 return DE[Idx]; in operator []() 101 void push_back(DictionaryEntry DE) { 103 this->DE[Size++] = DE; 110 DictionaryEntry DE[kMaxDictSize];
|
H A D | FuzzerMutate.h | 86 void AddWordToAutoDictionary(DictionaryEntry DE); 111 DictionaryEntry &DE);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/ |
H A D | Trace.cpp | 273 DataExtractor DE(Data, IsLittleEndian, 8); in loadFDRLog() 276 auto FileHeaderOrError = readBinaryFormatHeader(DE, OffsetPtr); in loadFDRLog() 285 FileBasedRecordProducer P(FileHeader, DE, OffsetPtr); in loadFDRLog() 287 while (DE.isValidOffsetForDataOfSize(OffsetPtr, 1)) { in loadFDRLog() 418 Expected<Trace> llvm::xray::loadTrace(const DataExtractor &DE, bool Sort) { in loadTrace() argument 433 DataExtractor HeaderExtractor(DE.getData(), DE.isLittleEndian(), 8); in loadTrace() 444 if (auto E = loadNaiveFormatLog(DE.getData(), DE.isLittleEndian(), in loadTrace() 456 if (auto E = loadFDRLog(DE in loadTrace() [all...] |
/third_party/libphonenumber/cpp/test/phonenumbers/ |
H A D | phonenumbermatcher_test.cc | 810 NumberTest("10/12/82", RegionCode::DE()), 847 NumberTest("+494949-4-94", RegionCode::DE()), 856 NumberTest("030-3-2 23 12 34", RegionCode::DE()), 857 NumberTest("03 0 -3 2 23 12 34", RegionCode::DE()), 858 NumberTest("(0)3 0 -3 2 23 12 34", RegionCode::DE()), 859 NumberTest("0 3 0 -3 2 23 12 34", RegionCode::DE()), 873 NumberTest("0800-2491234", RegionCode::DE()), 879 NumberTest("0900-1 123123", RegionCode::DE()), 880 NumberTest("(0)900-1 123123", RegionCode::DE()), 881 NumberTest("0 900-1 123123", RegionCode::DE()), [all...] |
H A D | test_util.h | 124 static const char* DE() { in DE() function in i18n::phonenumbers::RegionCode 125 return "DE"; in DE()
|
H A D | phonenumberutil_test.cc | 261 EXPECT_TRUE(find(regions.begin(), regions.end(), RegionCode::DE()) in TEST_F() 301 const PhoneMetadata* metadata = GetPhoneMetadata(RegionCode::DE()); in TEST_F() 302 EXPECT_EQ("DE", metadata->id()); in TEST_F() 415 bool success = phone_util_.GetExampleNumber(RegionCode::DE(), &test_number); in TEST_F() 420 RegionCode::DE(), PhoneNumberUtil::FIXED_LINE, &test_number); in TEST_F() 426 RegionCode::DE(), PhoneNumberUtil::FIXED_LINE_OR_MOBILE, &test_number); in TEST_F() 430 RegionCode::DE(), PhoneNumberUtil::MOBILE, &test_number); in TEST_F() 783 phone_util_.FormatOutOfCountryCallingNumber(test_number, RegionCode::DE(), in TEST_F() 809 phone_util_.FormatOutOfCountryCallingNumber(test_number, RegionCode::DE(), in TEST_F() 943 RegionCode::DE(), in TEST_F() [all...] |
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/ |
H A D | PhoneNumberMatcherTest.java | 438 new NumberTest("10/12/82", RegionCode.DE), 477 new NumberTest("+494949-4-94", RegionCode.DE), // National number in wrong format 483 new NumberTest("030-3-2 23 12 34", RegionCode.DE), 484 new NumberTest("03 0 -3 2 23 12 34", RegionCode.DE), 485 new NumberTest("(0)3 0 -3 2 23 12 34", RegionCode.DE), 486 new NumberTest("0 3 0 -3 2 23 12 34", RegionCode.DE), 500 new NumberTest("0800-2491234", RegionCode.DE), 503 new NumberTest("0900-1 123123", RegionCode.DE), 504 new NumberTest("(0)900-1 123123", RegionCode.DE), 505 new NumberTest("0 900-1 123123", RegionCode.DE), [all...] |
H A D | RegionCode.java | 43 static final String DE = "DE"; field in RegionCode
|
H A D | PhoneNumberUtilTest.java | 66 // Note that this is the same as the example number for DE in the metadata. 224 PhoneMetadata metadata = phoneUtil.getMetadataForRegion(RegionCode.DE); in testGetInstanceLoadDEMetadata() 225 assertEquals("DE", metadata.getId()); in testGetInstanceLoadDEMetadata() 402 assertEquals(DE_NUMBER, phoneUtil.getExampleNumber(RegionCode.DE)); in testGetExampleNumber() 405 DE_NUMBER, phoneUtil.getExampleNumberForType(RegionCode.DE, PhoneNumberType.FIXED_LINE)); in testGetExampleNumber() 408 phoneUtil.getExampleNumberForType(RegionCode.DE, PhoneNumberType.FIXED_LINE_OR_MOBILE)); in testGetExampleNumber() 612 phoneUtil.formatOutOfCountryCallingNumber(US_PREMIUM, RegionCode.DE)); in testFormatOutOfCountryCallingNumber() 628 assertEquals("1234", phoneUtil.formatOutOfCountryCallingNumber(DE_SHORT_NUMBER, RegionCode.DE)); in testFormatOutOfCountryCallingNumber() 705 phoneUtil.formatOutOfCountryKeepingAlphaChars(alphaNumericNumber, RegionCode.DE)); in testFormatOutOfCountryKeepingAlphaChars() 742 phoneUtil.formatOutOfCountryKeepingAlphaChars(alphaNumericNumber, RegionCode.DE)); in testFormatOutOfCountryKeepingAlphaChars() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/ |
H A D | FDRRecordProducer.h | 38 FileBasedRecordProducer(const XRayFileHeader &FH, DataExtractor &DE, in FileBasedRecordProducer() argument 40 : Header(FH), E(DE), OffsetPtr(OP) {} in FileBasedRecordProducer()
|
H A D | FDRRecords.h | 426 explicit RecordInitializer(DataExtractor &DE, uint64_t &OP, uint16_t V) in RecordInitializer() argument 427 : RecordVisitor(), E(DE), OffsetPtr(OP), Version(V) {} in RecordInitializer() 429 explicit RecordInitializer(DataExtractor &DE, uint64_t &OP) in RecordInitializer() argument 430 : RecordInitializer(DE, OP, DefaultVersion) {} in RecordInitializer()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | VirtualFileSystem.cpp | 1138 auto *DE = dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(E); in dumpEntry() local 1139 assert(DE && "Should be a directory"); in dumpEntry() 1142 llvm::make_range(DE->contents_begin(), DE->contents_end())) in dumpEntry() 1238 auto *DE = dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>( in lookupOrCreateEntry() local 1241 llvm::make_range(DE->contents_begin(), DE->contents_end())) { in lookupOrCreateEntry() 1263 auto *DE = in lookupOrCreateEntry() local 1265 DE->addContent(std::move(E)); in lookupOrCreateEntry() 1266 return DE in lookupOrCreateEntry() 1275 auto *DE = cast<RedirectingFileSystem::RedirectingDirectoryEntry>(SrcE); uniqueOverlayTree() local 1289 auto *DE = uniqueOverlayTree() local 1708 auto *DE = dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(From); lookupPath() local 1743 auto *DE = cast<RedirectingFileSystem::RedirectingDirectoryEntry>(E); status() local 1852 auto *DE = dyn_cast<RedirectingFileSystem::RedirectingDirectoryEntry>(SrcE); getVFSEntries() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonBlockRanges.cpp | 447 IndexType DE = IndexMap.getPrevIndex(A->start()); in computeDeadMap() 448 if (DE != IndexType::Entry) in computeDeadMap() 449 DeadMap[R].add(IndexType::Entry, DE, false, false); in computeDeadMap() 458 IndexType DE = IndexMap.getPrevIndex(A->start()); in computeDeadMap() 459 if (DS < DE) in computeDeadMap() 460 DeadMap[R].add(DS, DE, false, false); in computeDeadMap()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | stringLiteralTypesWithTemplateStrings01.js | 3 let DE_NEWLINE_F: "DE\nF" = `DE 10 var DE_NEWLINE_F = "DE\nF";
17 declare let DE_NEWLINE_F: "DE\nF";
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
H A D | regioncodefortesting.js | 52 DE: 'DE',
|
H A D | phonenumberutil_test.js | 97 // Note that this is the same as the example number for DE in the metadata. 295 var metadata = phoneUtil.getMetadataForRegion(RegionCode.DE); 296 assertEquals(RegionCode.DE, metadata.getId()); 559 assertTrue(DE_NUMBER.equals(phoneUtil.getExampleNumber(RegionCode.DE))); 562 phoneUtil.getExampleNumberForType(RegionCode.DE, PNT.FIXED_LINE))); 566 RegionCode.DE, PNT.FIXED_LINE_OR_MOBILE))); 814 phoneUtil.formatOutOfCountryCallingNumber(US_PREMIUM, RegionCode.DE)); 838 DE_SHORT_NUMBER, RegionCode.DE)); 953 alphaNumericNumber, RegionCode.DE)); 1007 alphaNumericNumber, RegionCode.DE)); [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LowerAtomic.cpp | 120 for (BasicBlock::iterator DI = BB.begin(), DE = BB.end(); DI != DE;) { in runOnBasicBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/ |
H A D | Symbolize.cpp | 261 DataExtractor DE(*ContentsOrErr, Obj->isLittleEndian(), 0); in getGNUDebuglinkContents() 263 if (const char *DebugNameStr = DE.getCStr(&Offset)) { in getGNUDebuglinkContents() 266 if (DE.isValidOffsetForDataOfSize(Offset, 4)) { in getGNUDebuglinkContents() 268 CRCHash = DE.getU32(&Offset); in getGNUDebuglinkContents()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | PostRASchedulerList.cpp | 695 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) { in EmitSchedule()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | ScheduleDAGSDNodes.cpp | 947 SDDbgInfo::DbgIterator DE = DAG->DbgEnd(); 950 for (unsigned i = 0, e = Orders.size(); i != e && DI != DE; ++i) { 955 for (; DI != DE; ++DI) { 979 for (; DI != DE; ++DI) {
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | sse-instr.h | 38 V(pmaxub, 66, 0F, DE) \
|
/third_party/mbedtls/library/ |
H A D | aes.c | 120 V(0D, F2, F2, FF), V(BD, 6B, 6B, D6), V(B1, 6F, 6F, DE), V(54, C5, C5, 91), \ 142 V(DE, 4A, 4A, 94), V(D4, 4C, 4C, 98), V(E8, 58, 58, B0), V(4A, CF, CF, 85), \ 158 V(79, DE, DE, A7), V(E2, 5E, 5E, BC), V(1D, 0B, 0B, 16), V(76, DB, DB, AD), \ 250 V(49, 5A, B1, DE), V(67, 1B, BA, 25), V(98, 0E, EA, 45), V(E1, C0, FE, 5D), \ 258 V(58, 68, 48, 70), V(19, FD, 45, 8F), V(87, 6C, DE, 94), V(B7, F8, 7B, 52), \ 287 V(CF, 81, F5, A6), V(28, DE, 7A, A5), V(26, 8E, B7, DA), V(A4, BF, AD, 3F), \ 308 V(71, 01, A8, 39), V(DE, B3, 0C, 08), V(9C, E4, B4, D8), V(90, C1, 56, 64), \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUMachineCFGStructurizer.cpp | 1959 for (auto DI = MRI->def_begin(Reg), DE = MRI->def_end(); DI != DE; ++DI) { 2099 for (auto DRI = PHIInfo.dests_begin(), DE = PHIInfo.dests_end(); DRI != DE; 2218 for (auto DRI = PHIInfo.dests_begin(), DE = PHIInfo.dests_end(); DRI != DE; 2263 for (auto DRI = PHIInfo.dests_begin(), DE = PHIInfo.dests_end(); DRI != DE;
|
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | sse-instr.h | 82 V(pmaxub, 66, 0F, DE) \
|