/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_execution_limitations.cpp | 35 for (uint32_t entry_id : _.FunctionEntryPoints(inst->id())) { in ValidateExecutionLimitations() local 36 const auto* models = _.GetExecutionModels(entry_id); in ValidateExecutionLimitations() 41 << entry_id << "."; in ValidateExecutionLimitations() 47 << "OpEntryPoint Entry Point <id> '" << _.getIdName(entry_id) in ValidateExecutionLimitations() 58 if (!func->CheckLimitations(_, _.function(entry_id), &reason)) { in ValidateExecutionLimitations() 60 << "OpEntryPoint Entry Point <id> '" << _.getIdName(entry_id) in ValidateExecutionLimitations()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
D | validate_execution_limitations.cpp | 35 for (uint32_t entry_id : _.FunctionEntryPoints(inst->id())) { in ValidateExecutionLimitations() local 36 const auto* models = _.GetExecutionModels(entry_id); in ValidateExecutionLimitations() 41 << entry_id << "."; in ValidateExecutionLimitations() 47 << "OpEntryPoint Entry Point <id> '" << _.getIdName(entry_id) in ValidateExecutionLimitations() 58 if (!func->CheckLimitations(_, _.function(entry_id), &reason)) { in ValidateExecutionLimitations() 60 << "OpEntryPoint Entry Point <id> '" << _.getIdName(entry_id) in ValidateExecutionLimitations()
|
/third_party/spirv-tools/source/val/ |
D | validate_execution_limitations.cpp | 35 for (uint32_t entry_id : _.FunctionEntryPoints(inst->id())) { in ValidateExecutionLimitations() local 36 const auto* models = _.GetExecutionModels(entry_id); in ValidateExecutionLimitations() 41 << entry_id << "."; in ValidateExecutionLimitations() 47 << "OpEntryPoint Entry Point <id> " << _.getIdName(entry_id) in ValidateExecutionLimitations() 58 if (!func->CheckLimitations(_, _.function(entry_id), &reason)) { in ValidateExecutionLimitations() 60 << "OpEntryPoint Entry Point <id> " << _.getIdName(entry_id) in ValidateExecutionLimitations()
|
/third_party/curl/tests/unit/ |
D | unit1609.c | 118 void *entry_id; variable 141 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port); 142 if(!entry_id) 145 dns = Curl_hash_pick(easy->dns.hostcache, entry_id, strlen(entry_id) + 1); 146 free(entry_id); 147 entry_id = NULL;
|
D | unit1607.c | 122 void *entry_id; variable 140 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port); 141 if(!entry_id) 143 dns = Curl_hash_pick(easy->dns.hostcache, entry_id, strlen(entry_id) + 1); 144 free(entry_id); 145 entry_id = NULL;
|
/third_party/curl/lib/ |
D | hostip.c | 285 char entry_id[MAX_HOSTCACHE_LEN]; in fetch_addr() local 289 entry_id, sizeof(entry_id)); in fetch_addr() 292 dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr() 296 entry_len = create_hostcache_id("*", 1, port, entry_id, sizeof(entry_id)); in fetch_addr() 299 dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr() 313 Curl_hash_delete(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr() 339 Curl_hash_delete(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr() 478 char entry_id[MAX_HOSTCACHE_LEN]; in Curl_cache_addr() local 502 entry_id, sizeof(entry_id)); in Curl_cache_addr() 514 dns2 = Curl_hash_add(data->dns.hostcache, entry_id, entry_len + 1, in Curl_cache_addr() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | dvbsubdec.c | 1054 int entry_id, depth , full_range; in dvbsub_parse_clut_segment() local 1092 entry_id = *buf++; in dvbsub_parse_clut_segment() 1122 ff_dlog(avctx, "clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha); in dvbsub_parse_clut_segment() 1129 if (depth & 0x80 && entry_id < 4) in dvbsub_parse_clut_segment() 1130 clut->clut4[entry_id] = RGBA(r,g,b,255 - alpha); in dvbsub_parse_clut_segment() 1131 else if (depth & 0x40 && entry_id < 16) in dvbsub_parse_clut_segment() 1132 clut->clut16[entry_id] = RGBA(r,g,b,255 - alpha); in dvbsub_parse_clut_segment() 1134 clut->clut256[entry_id] = RGBA(r,g,b,255 - alpha); in dvbsub_parse_clut_segment()
|
/third_party/spirv-tools/source/opt/ |
D | spread_volatile_semantics.cpp | 245 for (auto entry_id : entry_function_ids) { in SetVolatileForLoadsInEntries() local 247 context()->CollectCallTreeFromRoots(entry_id, &funcs); in SetVolatileForLoadsInEntries()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
D | ftrfork.c | 783 FT_Int32 entry_id, entry_offset, entry_length = 0; in raccess_guess_apple_generic() local 813 if ( FT_READ_LONG( entry_id ) ) in raccess_guess_apple_generic() 815 if ( entry_id == resource_fork_entry_id ) in raccess_guess_apple_generic()
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
D | function.cc | 1501 const auto entry_id = function_.begin()->id(); in TerminatorsAreValid() local 1509 [this, &block, entry_id](const uint32_t succ_id) -> bool { in TerminatorsAreValid() 1510 if (succ_id == entry_id) { in TerminatorsAreValid() 1512 << " branches to function entry block " << entry_id; in TerminatorsAreValid() 1530 const auto entry_id = function_.begin()->id(); in RegisterMerges() local 1584 if (header == entry_id) { in RegisterMerges() 1585 return Fail() << "Function entry block " << entry_id in RegisterMerges() 1740 const auto entry_id = block_order_[0]; in LabelControlFlowConstructs() local 1773 push_construct(0, Construct::kFunction, entry_id, 0); in LabelControlFlowConstructs()
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | test16-pr18904.so.abi | 10566 …<parameter type-id='type-id-44' name='entry_id' filepath='../../../gcc/liboffloadmic/runtime/compi… 10580 …<parameter type-id='type-id-44' name='entry_id' filepath='../../../gcc/liboffloadmic/runtime/compi… 10596 …<parameter type-id='type-id-44' name='entry_id' filepath='../../../gcc/liboffloadmic/runtime/compi…
|