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

  /external/kernel-headers/original/uapi/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/main/callgrind/
jumps.c 89 UInt new_idx; local
108 new_idx = jcc_hash_idx(curr_jcc->from, curr_jcc->jmp,
111 curr_jcc->next_hash = new_table[new_idx];
112 new_table[new_idx] = curr_jcc;
143 UInt new_idx; local
174 new_idx = jcc_hash_idx(from, jmp, to, current_jccs.size);
175 jcc->next_hash = current_jccs.table[new_idx];
176 current_jccs.table[new_idx] = jcc;
bb.c 71 UInt new_idx; local
89 new_idx = bb_hash_idx(curr->obj, curr->offset, new_size);
91 curr->next = new_table[new_idx];
92 new_table[new_idx] = curr;
context.c 95 UInt new_idx; local
113 new_idx = (UInt) (curr->hash % new_size);
115 curr->next = new_table[new_idx];
116 new_table[new_idx] = curr;
bbcc.c 197 UInt new_idx; local
216 new_idx = bbcc_hash_idx(curr_BBCC->bb,
220 curr_BBCC->next = new_table[new_idx];
221 new_table[new_idx] = curr_BBCC;
  /external/lldb/source/Interpreter/
OptionValueArray.cpp 102 uint32_t new_idx = UINT32_MAX; local
106 new_idx = array_count - idx;
111 new_idx = idx;
114 if (new_idx < array_count)
116 if (m_values[new_idx])
119 return m_values[new_idx]->GetSubValue (exe_ctx, sub_value, will_modify, error);
121 return m_values[new_idx];
  /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/lldb/include/lldb/Core/
StreamTee.h 127 size_t new_idx = m_streams.size(); local
130 return new_idx;
  /external/chromium_org/third_party/openssl/openssl/crypto/engine/
eng_dyn.c 240 int new_idx = ENGINE_get_ex_new_index(0, NULL, NULL, NULL, local
242 if(new_idx == -1)
252 dynamic_ex_data_idx = new_idx;
253 new_idx = -1;
257 * (new_idx>-1), but it's not possible and wouldn't gain us much
  /external/openssl/crypto/engine/
eng_dyn.c 240 int new_idx = ENGINE_get_ex_new_index(0, NULL, NULL, NULL, local
242 if(new_idx == -1)
252 dynamic_ex_data_idx = new_idx;
253 new_idx = -1;
257 * (new_idx>-1), but it's not possible and wouldn't gain us much
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_onyxc_int.h 227 static INLINE void ref_cnt_fb(RefCntBuffer *bufs, int *idx, int new_idx) {
233 *idx = new_idx;
235 bufs[new_idx].ref_count++;
  /external/libvpx/libvpx/vp9/common/
vp9_onyxc_int.h 228 static INLINE void ref_cnt_fb(RefCntBuffer *bufs, int *idx, int new_idx) {
234 *idx = new_idx;
236 bufs[new_idx].ref_count++;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_onyxc_int.h 225 static INLINE void ref_cnt_fb(RefCntBuffer *bufs, int *idx, int new_idx) {
231 *idx = new_idx;
233 bufs[new_idx].ref_count++;
  /external/chromium_org/third_party/mesa/src/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/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/llvm/include/llvm/IR/
CFG.h 205 unsigned new_idx = idx + Right; local
206 assert(index_is_valid(new_idx) && "Iterator index out of bound");
207 idx = new_idx;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
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)
198 *idx = new_idx;
200 buf[new_idx]++;
  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 43 static void ref_cnt_fb (int *buf, int *idx, int new_idx);
199 static void ref_cnt_fb (int *buf, int *idx, int new_idx)
204 *idx = new_idx;
206 buf[new_idx]++;
  /external/lldb/tools/debugserver/source/MacOSX/
MachThreadList.cpp 412 for (uint32_t new_idx = 0; new_idx < num_new_threads; ++new_idx)
414 if (thread == new_threads[new_idx].get())
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
onyxd_if.c 43 static void ref_cnt_fb (int *buf, int *idx, int new_idx);
199 static void ref_cnt_fb (int *buf, int *idx, int new_idx)
204 *idx = new_idx;
206 buf[new_idx]++;
  /art/runtime/mirror/
art_field.h 81 void SetDexFieldIndex(uint32_t new_idx) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
83 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtField, field_dex_idx_), new_idx); local
art_method.h 198 void SetDexMethodIndex(uint32_t new_idx) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
200 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_method_index_), new_idx); local
  /external/opencv/ml/src/
mltree.cpp 2521 int* new_idx = data->split_buf->data.i; local
    [all...]

Completed in 391 milliseconds