HomeSort by relevance Sort by last modified time
    Searched refs:new_idx (Results 1 - 25 of 38) sorted by null

1 2

  /external/kernel-headers/original/uapi/linux/
virtio_ring.h 162 * we have just incremented index from old to new_idx,
164 static inline int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old)
168 * corresponding to event_idx + 1 and new_idx respectively.
171 return (__u16)(new_idx - event_idx - 1) < (__u16)(new_idx - old);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
virtio_ring.h 151 * we have just incremented index from old to new_idx,
153 static __inline__ int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old)
157 * corresponding to event_idx + 1 and new_idx respectively.
160 return (__u16)(new_idx - event_idx - 1) < (__u16)(new_idx - old);
  /external/valgrind/callgrind/
jumps.c 87 UInt new_idx; local
104 new_idx = jcc_hash_idx(curr_jcc->from, curr_jcc->jmp,
107 curr_jcc->next_hash = new_table[new_idx];
108 new_table[new_idx] = curr_jcc;
139 UInt new_idx; local
170 new_idx = jcc_hash_idx(from, jmp, to, current_jccs.size);
171 jcc->next_hash = current_jccs.table[new_idx];
172 current_jccs.table[new_idx] = jcc;
bb.c 71 UInt new_idx; local
87 new_idx = bb_hash_idx(curr->obj, curr->offset, new_size);
89 curr->next = new_table[new_idx];
90 new_table[new_idx] = curr;
context.c 90 UInt new_idx; local
106 new_idx = (UInt) (curr->hash % new_size);
108 curr->next = new_table[new_idx];
109 new_table[new_idx] = curr;
bbcc.c 197 UInt new_idx; local
214 new_idx = bbcc_hash_idx(curr_BBCC->bb,
218 curr_BBCC->next = new_table[new_idx];
219 new_table[new_idx] = curr_BBCC;
  /external/vulkan-validation-layers/loader/
extension_manual.c     [all...]
loader.c     [all...]
  /external/e2fsprogs/lib/et/
et_h.awk 170 new_idx = $2
171 curr_low += curr_sign * (new_idx - curr_idx)
172 curr_idx = new_idx
et_c.awk 209 new_idx = $2
210 for (i = table_item_count ; i < new_idx; i++) {
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
keycodes.c 88 LedNameInfo *new, xkb_led_index_t new_idx)
99 if (old_idx == new_idx) {
108 xkb_led_index_t use = (replace ? new_idx + 1 : old_idx + 1);
109 xkb_led_index_t ignore = (replace ? old_idx + 1 : new_idx + 1);
121 if (new_idx >= info->num_led_names)
122 info->num_led_names = new_idx + 1;
125 old = &info->led_names[new_idx];
131 "Using %s, ignoring %s\n", new_idx + 1,
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CFG.h 173 unsigned new_idx = idx + Right; local
174 assert(index_is_valid(new_idx) && "Iterator index out of bound");
175 idx = new_idx;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler_util.c 687 unsigned int new_idx = 0; local
691 for ( ; new_idx < 4; new_idx++) {
692 if (GET_BIT(new_mask, new_idx)) {
693 SET_SWZ(conversion_swizzle, old_idx, new_idx);
694 new_idx++;
  /external/tensorflow/tensorflow/compiler/xla/service/
while_loop_simplifier.cc 407 for (int64 new_idx = 0; new_idx < new_to_old_tuple_idx.size(); ++new_idx) {
408 int64 old_idx = new_to_old_tuple_idx[new_idx];
409 old_to_new_tuple_idx[old_idx] = new_idx;
410 VLOG(2) << "Remapping tuple index " << old_idx << " to " << new_idx; local
  /external/libvpx/libvpx/vp9/common/
vp9_onyxc_int.h 289 static INLINE void ref_cnt_fb(RefCntBuffer *bufs, int *idx, int new_idx) {
295 *idx = new_idx;
297 bufs[new_idx].ref_count++;
  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 45 static void ref_cnt_fb(int *buf, int *idx, int new_idx);
203 static void ref_cnt_fb(int *buf, int *idx, int new_idx) {
206 *idx = new_idx;
208 buf[new_idx]++;
  /external/adhd/cras/src/server/
cras_iodev_list.c 112 uint32_t new_idx; local
124 new_idx = next_iodev_idx;
126 if (new_idx < MAX_SPECIAL_DEVICE_IDX)
127 new_idx = MAX_SPECIAL_DEVICE_IDX;
128 DL_SEARCH_SCALAR(list->iodevs, tmp, info.idx, new_idx);
131 new_idx++;
133 dev->info.idx = new_idx;
134 next_iodev_idx = new_idx + 1;
  /external/libvncserver/libvncserver/
tight.c 1361 int hash_key, idx, new_idx, count; local
    [all...]
  /art/runtime/
art_field.h 83 void SetDexFieldIndex(uint32_t new_idx) {
85 field_dex_idx_ = new_idx;
  /external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
training_ops.cc 707 auto new_idx = tree_config->nodes_size(); local
709 nodes_map[child_idx] = new_idx;
710 child_idx = new_idx;
    [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h 213 unsigned new_idx = idx + Right; local
214 assert(index_is_valid(new_idx) && "Iterator index out of bound");
215 idx = new_idx;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
InstrTypes.h 227 unsigned new_idx = idx + Right; local
228 assert(index_is_valid(new_idx) && "Iterator index out of bound");
229 idx = new_idx;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
InstrTypes.h 214 unsigned new_idx = idx + Right; local
215 assert(index_is_valid(new_idx) && "Iterator index out of bound");
216 idx = new_idx;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
InstrTypes.h 214 unsigned new_idx = idx + Right; local
215 assert(index_is_valid(new_idx) && "Iterator index out of bound");
216 idx = new_idx;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
InstrTypes.h 214 unsigned new_idx = idx + Right; local
215 assert(index_is_valid(new_idx) && "Iterator index out of bound");
216 idx = new_idx;
    [all...]

Completed in 405 milliseconds

1 2