/external/valgrind/callgrind/ |
D | jumps.c | 87 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()
|
D | context.c | 90 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()
|
D | bb.c | 71 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()
|
D | bbcc.c | 197 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/lldb/source/Interpreter/ |
D | OptionValueArray.cpp | 102 uint32_t new_idx = UINT32_MAX; in GetSubValue() local 106 new_idx = array_count - idx; in GetSubValue() 111 new_idx = idx; in GetSubValue() 114 if (new_idx < array_count) in GetSubValue() 116 if (m_values[new_idx]) in GetSubValue() 119 … return m_values[new_idx]->GetSubValue (exe_ctx, sub_value, will_modify, error); in GetSubValue() 121 return m_values[new_idx]; in GetSubValue()
|
/external/kernel-headers/original/uapi/linux/ |
D | virtio_ring.h | 153 static inline int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old) in vring_need_event() argument 160 return (__u16)(new_idx - event_idx - 1) < (__u16)(new_idx - old); in vring_need_event()
|
/external/e2fsprogs/lib/et/ |
D | et_h.awk | 170 new_idx = $2 171 curr_low += curr_sign * (new_idx - curr_idx) 172 curr_idx = new_idx
|
D | et_c.awk | 209 new_idx = $2 210 for (i = table_item_count ; i < new_idx; i++) {
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_compiler_util.c | 687 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/libvncserver/x11vnc/misc/turbovnc/ |
D | tight.c | 1197 int hash_key, idx, new_idx, count; local 1206 new_idx = idx = pnode->idx; 1208 if (new_idx && palette.entry[new_idx-1].numPixels < count) { 1210 palette.entry[new_idx] = palette.entry[new_idx-1]; 1211 palette.entry[new_idx].listNode->idx = new_idx; 1212 new_idx--; 1214 while (new_idx && palette.entry[new_idx-1].numPixels < count); 1215 palette.entry[new_idx].listNode = pnode; 1216 pnode->idx = new_idx; 1218 palette.entry[new_idx].numPixels = count;
|
/external/lldb/include/lldb/Core/ |
D | StreamTee.h | 127 size_t new_idx = m_streams.size(); in AppendStream() local 130 return new_idx; in AppendStream()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_onyxc_int.h | 229 static INLINE void ref_cnt_fb(RefCntBuffer *bufs, int *idx, int new_idx) { in ref_cnt_fb() argument 235 *idx = new_idx; in ref_cnt_fb() 237 bufs[new_idx].ref_count++; in ref_cnt_fb()
|
/external/libvpx/libvpx/vp8/decoder/ |
D | onyxd_if.c | 43 static void ref_cnt_fb (int *buf, int *idx, int new_idx); 193 static void ref_cnt_fb (int *buf, int *idx, int new_idx) in ref_cnt_fb() argument 198 *idx = new_idx; in ref_cnt_fb() 200 buf[new_idx]++; in ref_cnt_fb()
|
/external/libvncserver/libvncserver/ |
D | tight.c | 1361 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/lldb/tools/debugserver/source/MacOSX/ |
D | MachThreadList.cpp | 412 for (uint32_t new_idx = 0; new_idx < num_new_threads; ++new_idx) in ProcessWillResume() local 414 if (thread == new_threads[new_idx].get()) in ProcessWillResume()
|
/external/llvm/include/llvm/IR/ |
D | CFG.h | 211 unsigned new_idx = idx + Right; variable 212 assert(index_is_valid(new_idx) && "Iterator index out of bound"); 213 idx = new_idx;
|
/external/opencv/ml/src/ |
D | mltree.cpp | 2521 int* new_idx = data->split_buf->data.i; in split_node_data() local 2537 new_idx[i] = (nl & (d-1)) | (nr & -d); // d ? ri : li in split_node_data() 2572 idx = new_idx[idx]; in split_node_data() 2587 idx = new_idx[idx]; in split_node_data()
|