Home
last modified time | relevance | path

Searched refs:last_idx (Results 1 – 4 of 4) 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/fio/
Dsmalloc.c348 unsigned int last_idx; in __smalloc_pool() local
358 last_idx = 0; in __smalloc_pool()
366 last_idx = 0; in __smalloc_pool()
370 idx = find_next_zero(pool->bitmap[i], last_idx); in __smalloc_pool()
374 last_idx = idx; in __smalloc_pool()
376 last_idx = 0; in __smalloc_pool()
/external/mesa3d/src/intel/vulkan/
Danv_batch_chain.c404 uint32_t last_idx = prev_bbo->relocs.num_relocs - 1; in anv_batch_bo_list_clone() local
405 assert(prev_bbo->relocs.reloc_bos[last_idx] == &bbo->bo); in anv_batch_bo_list_clone()
406 prev_bbo->relocs.reloc_bos[last_idx] = &new_bbo->bo; in anv_batch_bo_list_clone()
1270 uint32_t last_idx = execbuf.bo_count - 1; in anv_cmd_buffer_execbuf() local
1275 execbuf.objects[idx] = execbuf.objects[last_idx]; in anv_cmd_buffer_execbuf()
1276 execbuf.bos[idx] = execbuf.bos[last_idx]; in anv_cmd_buffer_execbuf()
1279 execbuf.objects[last_idx] = tmp_obj; in anv_cmd_buffer_execbuf()
1280 execbuf.bos[last_idx] = &first_batch_bo->bo; in anv_cmd_buffer_execbuf()
1281 first_batch_bo->bo.index = last_idx; in anv_cmd_buffer_execbuf()
/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]