Home
last modified time | relevance | path

Searched refs:last_idx (Results 1 – 10 of 10) 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/u-boot/drivers/phy/marvell/
Dcomphy_core.c77 int last_idx = 0; in comphy_probe() local
159 last_idx = 1; in comphy_probe()
161 if (chip_cfg->cp_index == last_idx) { in comphy_probe()
/external/tensorflow/tensorflow/contrib/recurrent/python/ops/
Dfunctional_rnn.py211 last_idx = math_ops.cast(math_ops.equal(output_time, lengths - 1),
213 last_idx = array_ops.transpose(last_idx)
214 last_idx_for_bcast = array_ops.expand_dims(last_idx, -1)
/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/skia/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/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/mesa3d/src/intel/vulkan/
Danv_batch_chain.c424 uint32_t last_idx = prev_bbo->relocs.num_relocs - 1; in anv_batch_bo_list_clone() local
425 assert(prev_bbo->relocs.reloc_bos[last_idx] == &bbo->bo); in anv_batch_bo_list_clone()
426 prev_bbo->relocs.reloc_bos[last_idx] = &new_bbo->bo; in anv_batch_bo_list_clone()
1338 uint32_t last_idx = execbuf->bo_count - 1; in setup_execbuf_for_cmd_buffer() local
1343 execbuf->objects[idx] = execbuf->objects[last_idx]; in setup_execbuf_for_cmd_buffer()
1344 execbuf->bos[idx] = execbuf->bos[last_idx]; in setup_execbuf_for_cmd_buffer()
1347 execbuf->objects[last_idx] = tmp_obj; in setup_execbuf_for_cmd_buffer()
1348 execbuf->bos[last_idx] = &first_batch_bo->bo; in setup_execbuf_for_cmd_buffer()
1349 first_batch_bo->bo.index = last_idx; in setup_execbuf_for_cmd_buffer()
/external/tensorflow/tensorflow/core/grappler/
Dmutable_graph_view.cc345 const int last_idx = node->input_size() - 1; in AddAndDedupFanouts() local
346 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()
1571 const int last_idx = graph()->node_size() - 1; in DeleteNodes() local
1572 int last_pos = last_idx; in DeleteNodes()
1581 if (last_pos < last_idx) { in DeleteNodes()
1582 graph()->mutable_node()->DeleteSubrange(last_pos + 1, last_idx - last_pos); in DeleteNodes()
/external/u-boot/lib/
Dhashtable.c200 int hmatch_r(const char *match, int last_idx, ENTRY ** retval, in hmatch_r() argument
206 for (idx = last_idx + 1; idx < htab->size; ++idx) { in hmatch_r()
/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]