/third_party/spirv-tools/source/opt/ |
H A D | invocation_interlock_placement_pass.cpp | 252 [&inside, &previous_inside, &worklist](uint32_t next_id) { 253 previous_inside.insert(next_id); 254 if (inside.insert(next_id).second) { 255 worklist.push_back(next_id); 329 BasicBlock* block, uint32_t next_id, BlockSet& inside, 333 if (previous_inside.count(next_id) && !inside.count(block->id())) { 343 // Additionally, because `next_id` is in `previous_inside`, we know that 344 // `next_id` has at least one previous block in `inside`. And because 345 // 'block` is not in `inside`, that means the `next_id` has to have at 354 forEachNext(next_id, !reverse_cf [all...] |
H A D | invocation_interlock_placement_pass.h | 120 // For the edge from block to next_id, places a begin or end instruction on 123 bool placeInstructionsForEdge(BasicBlock* block, uint32_t next_id,
|
/third_party/elfutils/libdw/ |
H A D | libdw_alloc.c | 48 static atomic_size_t next_id = ATOMIC_VAR_INIT(0); variable 54 thread_id = atomic_fetch_add (&next_id, 1); in __libdw_alloc_tail()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | stacks.h | 90 static std::atomic<int> next_id(1); in StackMemory() 91 id_ = next_id.fetch_add(1); in StackMemory()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | scope.c | 105 ptr = &(*ptr)->next_id; in remove_symbol_scope() 106 *ptr = sym->next_id; in remove_symbol_scope()
|
H A D | symbol.c | 64 for (sym = ident->symbols; sym; sym = sym->next_id) { in lookup_symbol() 698 while ((next = next->next_id) != NULL) { in check_declaration() 732 for (prev = sym->next_id; prev; prev = prev->next_id) { in inherit_static() 756 sym->next_id = ident->symbols; in bind_symbol_with_scope()
|
H A D | graph.c | 144 sym; sym = sym->next_id) { in graph_calls()
|
/third_party/nghttp2/ |
H A D | mkhufftbl.py | 291 def next_id(self): member in Context 319 node.id = ctx.next_id()
|
/third_party/skia/src/gpu/ |
H A D | GrContextThreadSafeProxy.cpp | 25 static int32_t next_id() { in next_id() function 36 : fBackend(backend), fOptions(options), fContextID(next_id()) { in GrContextThreadSafeProxy()
|
/third_party/libbpf/src/ |
H A D | bpf.h | 464 LIBBPF_API int bpf_prog_get_next_id(__u32 start_id, __u32 *next_id); 465 LIBBPF_API int bpf_map_get_next_id(__u32 start_id, __u32 *next_id); 466 LIBBPF_API int bpf_btf_get_next_id(__u32 start_id, __u32 *next_id); 467 LIBBPF_API int bpf_link_get_next_id(__u32 start_id, __u32 *next_id);
|
H A D | bpf.c | 1004 static int bpf_obj_get_next_id(__u32 start_id, __u32 *next_id, int cmd) in bpf_obj_get_next_id() argument 1015 *next_id = attr.next_id; in bpf_obj_get_next_id() 1020 int bpf_prog_get_next_id(__u32 start_id, __u32 *next_id) in bpf_prog_get_next_id() argument 1022 return bpf_obj_get_next_id(start_id, next_id, BPF_PROG_GET_NEXT_ID); in bpf_prog_get_next_id() 1025 int bpf_map_get_next_id(__u32 start_id, __u32 *next_id) in bpf_map_get_next_id() argument 1027 return bpf_obj_get_next_id(start_id, next_id, BPF_MAP_GET_NEXT_ID); in bpf_map_get_next_id() 1030 int bpf_btf_get_next_id(__u32 start_id, __u32 *next_id) in bpf_btf_get_next_id() argument 1032 return bpf_obj_get_next_id(start_id, next_id, BPF_BTF_GET_NEXT_ID); in bpf_btf_get_next_id() 1035 int bpf_link_get_next_id(__u32 start_id, __u32 *next_id) in bpf_link_get_next_id() argument [all...] |
/third_party/ltp/tools/sparse/sparse-src/validation/backend/ |
H A D | struct.c | 9 struct symbol *next_id; member
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-repacker.hh | 256 unsigned next_id = queue[0]; in sort_kahn() local 259 vertex_t& next = vertices_[next_id]; in sort_kahn() 261 id_map[next_id] = new_id--; in sort_kahn() 311 unsigned next_id = queue.pop_minimum().second; in sort_shortest_distance() local 313 vertex_t& next = vertices_[next_id]; in sort_shortest_distance() 315 id_map[next_id] = new_id--; in sort_shortest_distance()
|
/third_party/skia/third_party/externals/tint/src/writer/spirv/ |
H A D | builder_test.cc | 29 EXPECT_EQ(b.next_id(), i + 1); in TEST_F()
|
H A D | builder_binary_expression_test.cc | 700 b.GenerateLabel(b.next_id()); in TEST_F() 738 b.GenerateLabel(b.next_id()); in TEST_F() 780 b.GenerateLabel(b.next_id()); in TEST_F() 820 b.GenerateLabel(b.next_id()); in TEST_F() 859 b.GenerateLabel(b.next_id()); in TEST_F() 897 b.GenerateLabel(b.next_id()); in TEST_F()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | hash_policy_testing.h | 39 WithId() : id_(next_id<Derived>()) {} in WithId() 66 static size_t next_id() { in next_id() function
|
/third_party/node/src/ |
H A D | inspector_profiler.cc | 45 uint32_t id = next_id();
|
H A D | inspector_profiler.h | 73 uint32_t next_id() { return id_++; } in next_id() function in node::profiler::V8ProfilerConnection
|
/third_party/node/deps/brotli/c/enc/ |
H A D | block_splitter_inc.h | 158 uint16_t next_id = 0; in RemapBlockIds() local 166 new_id[block_ids[i]] = next_id++; in RemapBlockIds() 173 BROTLI_DCHECK(next_id <= num_histograms); in RemapBlockIds() 174 return next_id; in RemapBlockIds()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | block_splitter_inc.h | 158 uint16_t next_id = 0; in RemapBlockIds() local 166 new_id[block_ids[i]] = next_id++; in RemapBlockIds() 173 BROTLI_DCHECK(next_id <= num_histograms); in RemapBlockIds() 174 return next_id; in RemapBlockIds()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | compute_memory_pool.h | 61 int64_t next_id; /**< For generating unique IDs for memory chunks */ member
|
/third_party/python/Include/internal/ |
H A D | pycore_runtime.h | 101 int64_t next_id; member
|
/third_party/mesa3d/src/glx/tests/ |
H A D | create_context_unittest.cpp | 36 static uint32_t next_id; variable 72 return next_id++; in xcb_generate_id() 150 next_id = 99; in SetUp()
|
/third_party/python/Lib/ |
H A D | difflib.py | 1900 next_id = ['']*len(flaglist) 1913 next_id[i] = ' id="difflib_chg_%s_%d"' % (toprefix,num_chg) 1924 next_id = [''] 1938 return fromlist,tolist,flaglist,next_href,next_id 1982 fromlist,tolist,flaglist,next_href,next_id = self._convert_flags( 1995 s.append( fmt % (next_id[i],next_href[i],fromlist[i],
|
/third_party/skia/src/core/ |
H A D | SkVertices.cpp | 22 static int32_t next_id() { in next_id() function 169 fVertices->fUniqueID = next_id(); in detach()
|