Home
last modified time | relevance | path

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

/external/valgrind/callgrind/
Djumps.c87 UInt new_idx; in resize_jcc_table() local
104 new_idx = jcc_hash_idx(curr_jcc->from, curr_jcc->jmp, in resize_jcc_table()
107 curr_jcc->next_hash = new_table[new_idx]; in resize_jcc_table()
108 new_table[new_idx] = curr_jcc; in resize_jcc_table()
139 UInt new_idx; in new_jcc() local
170 new_idx = jcc_hash_idx(from, jmp, to, current_jccs.size); in new_jcc()
171 jcc->next_hash = current_jccs.table[new_idx]; in new_jcc()
172 current_jccs.table[new_idx] = jcc; in new_jcc()
Dcontext.c90 UInt new_idx; in resize_cxt_table() local
106 new_idx = (UInt) (curr->hash % new_size); in resize_cxt_table()
108 curr->next = new_table[new_idx]; in resize_cxt_table()
109 new_table[new_idx] = curr; in resize_cxt_table()
Dbb.c71 UInt new_idx; in resize_bb_table() local
87 new_idx = bb_hash_idx(curr->obj, curr->offset, new_size); in resize_bb_table()
89 curr->next = new_table[new_idx]; in resize_bb_table()
90 new_table[new_idx] = curr; in resize_bb_table()
Dbbcc.c197 UInt new_idx; in resize_bbcc_hash() local
214 new_idx = bbcc_hash_idx(curr_BBCC->bb, in resize_bbcc_hash()
218 curr_BBCC->next = new_table[new_idx]; in resize_bbcc_hash()
219 new_table[new_idx] = curr_BBCC; in resize_bbcc_hash()
/external/kernel-headers/original/uapi/linux/
Dvirtio_ring.h164 static inline int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old) in vring_need_event() argument
171 return (__u16)(new_idx - event_idx - 1) < (__u16)(new_idx - old); in vring_need_event()
/external/e2fsprogs/lib/et/
Det_h.awk170 new_idx = $2
171 curr_low += curr_sign * (new_idx - curr_idx)
172 curr_idx = new_idx
Det_c.awk209 new_idx = $2
210 for (i = table_item_count ; i < new_idx; i++) {
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_compiler_util.c687 unsigned int new_idx = 0; in rc_make_conversion_swizzle() local
691 for ( ; new_idx < 4; new_idx++) { in rc_make_conversion_swizzle()
692 if (GET_BIT(new_mask, new_idx)) { in rc_make_conversion_swizzle()
693 SET_SWZ(conversion_swizzle, old_idx, new_idx); in rc_make_conversion_swizzle()
694 new_idx++; in rc_make_conversion_swizzle()
/external/libvpx/libvpx/vp8/decoder/
Donyxd_if.c46 static void ref_cnt_fb(int *buf, int *idx, int new_idx);
204 static void ref_cnt_fb(int *buf, int *idx, int new_idx) { in ref_cnt_fb() argument
207 *idx = new_idx; in ref_cnt_fb()
209 buf[new_idx]++; in ref_cnt_fb()
/external/libvncserver/libvncserver/
Dtight.c1361 int hash_key, idx, new_idx, count; in PaletteInsert() local
1370 new_idx = idx = pnode->idx; in PaletteInsert()
1372 if (new_idx && palette.entry[new_idx-1].numPixels < count) { in PaletteInsert()
1374 palette.entry[new_idx] = palette.entry[new_idx-1]; in PaletteInsert()
1375 palette.entry[new_idx].listNode->idx = new_idx; in PaletteInsert()
1376 new_idx--; in PaletteInsert()
1378 while (new_idx && palette.entry[new_idx-1].numPixels < count); in PaletteInsert()
1379 palette.entry[new_idx].listNode = pnode; in PaletteInsert()
1380 pnode->idx = new_idx; in PaletteInsert()
1382 palette.entry[new_idx].numPixels = count; in PaletteInsert()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DCFG.h173 unsigned new_idx = idx + Right; variable
174 assert(index_is_valid(new_idx) && "Iterator index out of bound");
175 idx = new_idx;
/external/libvpx/libvpx/vp9/common/
Dvp9_onyxc_int.h321 static INLINE void ref_cnt_fb(RefCntBuffer *bufs, int *idx, int new_idx) { in ref_cnt_fb() argument
327 *idx = new_idx; in ref_cnt_fb()
329 bufs[new_idx].ref_count++; in ref_cnt_fb()
/external/llvm/include/llvm/IR/
DInstrTypes.h213 unsigned new_idx = idx + Right; variable
214 assert(index_is_valid(new_idx) && "Iterator index out of bound");
215 idx = new_idx;