Home
last modified time | relevance | path

Searched refs:last_idx (Results 1 – 13 of 13) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_bitvector_test.cc35 uptr last_idx = bv.size(); in CheckBV() local
40 if (last_idx != bv.size()) in CheckBV()
41 EXPECT_LT(last_idx, idx); in CheckBV()
42 last_idx = idx; in CheckBV()
47 last_idx = bv.size(); in CheckBV()
50 if (last_idx != bv.size()) in CheckBV()
51 EXPECT_LT(last_idx, idx); in CheckBV()
52 last_idx = idx; in CheckBV()
/external/mesa3d/src/gallium/drivers/zink/
Dnir_lower_dynamic_bo_access.c93 unsigned first_idx = UINT_MAX, last_idx; in lower_dynamic_bo_access_instr() local
101 last_idx = first_idx + b->shader->info.num_ssbos; in lower_dynamic_bo_access_instr()
105 last_idx = first_idx + b->shader->info.num_ubos; in lower_dynamic_bo_access_instr()
111 first_idx, last_idx); in lower_dynamic_bo_access_instr()
/external/u-boot/drivers/phy/marvell/
Dcomphy_core.c82 int last_idx = 0; in comphy_probe() local
169 last_idx = 1; in comphy_probe()
171 if (chip_cfg->cp_index == last_idx) { in comphy_probe()
/external/libaom/libaom/av1/encoder/x86/
Dencodetxb_sse2.c439 const int last_idx = eob - 1; in av1_get_nz_map_contexts_sse2() local
440 if (!last_idx) { in av1_get_nz_map_contexts_sse2()
498 const int pos = scan[last_idx]; in av1_get_nz_map_contexts_sse2()
499 if (last_idx <= (height << bwl) / 8) in av1_get_nz_map_contexts_sse2()
501 else if (last_idx <= (height << bwl) / 4) in av1_get_nz_map_contexts_sse2()
/external/skqp/src/compute/skc/
Dsuballocator.c283 skc_uint const last_idx = --suballocator->rem.avail; in skc_suballocator_subbuf_free() local
288 if (last_idx != next_idx) in skc_suballocator_subbuf_free()
290 skc_subbuf_id_t const last_id = suballocator->ids[last_idx]; in skc_suballocator_subbuf_free()
/external/u-boot/include/
Dsearch.h78 int hmatch_r(const char *match, int last_idx, struct env_entry **retval,
/external/tensorflow/tensorflow/core/grappler/
Dmutable_graph_view.cc346 const int last_idx = node->input_size() - 1; in AddAndDedupFanouts() local
347 int last_pos = last_idx; in AddAndDedupFanouts()
379 if (last_pos < last_idx) { in AddAndDedupFanouts()
380 node->mutable_input()->DeleteSubrange(last_pos + 1, last_idx - last_pos); in AddAndDedupFanouts()
1574 const int last_idx = graph()->node_size() - 1; in DeleteNodes() local
1575 int last_pos = last_idx; in DeleteNodes()
1584 if (last_pos < last_idx) { in DeleteNodes()
1585 graph()->mutable_node()->DeleteSubrange(last_pos + 1, last_idx - last_pos); in DeleteNodes()
/external/mesa3d/src/intel/vulkan/
Danv_batch_chain.c1556 uint32_t last_idx = execbuf->bo_count - 1; in setup_execbuf_for_cmd_buffer() local
1561 execbuf->objects[idx] = execbuf->objects[last_idx]; in setup_execbuf_for_cmd_buffer()
1562 execbuf->bos[idx] = execbuf->bos[last_idx]; in setup_execbuf_for_cmd_buffer()
1565 execbuf->objects[last_idx] = tmp_obj; in setup_execbuf_for_cmd_buffer()
1566 execbuf->bos[last_idx] = first_batch_bo->bo; in setup_execbuf_for_cmd_buffer()
1567 first_batch_bo->bo->index = last_idx; in setup_execbuf_for_cmd_buffer()
/external/u-boot/lib/
Dhashtable.c205 int hmatch_r(const char *match, int last_idx, struct env_entry **retval, in hmatch_r() argument
211 for (idx = last_idx + 1; idx < htab->size; ++idx) { in hmatch_r()
/external/tensorflow/tensorflow/core/grappler/utils/
Dgraph_view.cc547 const int last_idx = node_fanins.size() - 1; in AddFaninsInternal() local
548 int last_pos = last_idx; in AddFaninsInternal()
596 if (last_pos < last_idx) { in AddFaninsInternal()
597 node->mutable_input()->DeleteSubrange(last_pos + 1, last_idx - last_pos); in AddFaninsInternal()
/external/scapy/scapy/layers/tls/
Dcert.py86 last_idx = pem_string.rfind(b"-----", 0, pem_string.rfind(b"-----"))
87 base64_string = pem_string[first_idx:last_idx]
/external/libaom/libaom/av1/encoder/
Dratectrl.c1970 int last_idx = 0; in set_reference_structure_one_pass_rt() local
1989 last_idx = ((cm->current_frame.frame_number - 1) % sh); in set_reference_structure_one_pass_rt()
2003 svc->ref_idx[0] = last_idx; // LAST in set_reference_structure_one_pass_rt()
/external/fonttools/Lib/fontTools/subset/
D__init__.py1811 last_idx = varidx_map[table_map.mapping[s.last_retained_glyph]]
1813 map_[g] = last_idx if i > s.last_retained_order else 0