Searched refs:idx (Results 26 - 50 of 2166) sorted by relevance

1234567891011>>

/external/elfutils/0.153/libdw/
H A Ddwarf_getarange_addr.c70 size_t idx = (l + u) / 2; local
71 if (addr < aranges->info[idx].addr)
72 u = idx;
73 else if (addr > aranges->info[idx].addr
74 && addr - aranges->info[idx].addr >= aranges->info[idx].length)
75 l = idx + 1;
77 return &aranges->info[idx];
H A Ddwarf_onearange.c59 dwarf_onearange (Dwarf_Aranges *aranges, size_t idx) argument
64 if (idx >= aranges->naranges)
70 return &aranges->info[idx];
H A Ddwarf_onesrcline.c59 dwarf_onesrcline (Dwarf_Lines *lines, size_t idx) argument
64 if (idx >= lines->nlines)
70 return &lines->info[idx];
H A Ddwarf_getsrc_die.c72 size_t idx = (l + u) / 2; local
73 if (addr < lines->info[idx].addr)
74 u = idx;
75 else if (addr > lines->info[idx].addr || lines->info[idx].end_sequence)
76 l = idx + 1;
78 return &lines->info[idx];
/external/elfutils/0.153/libdwfl/
H A Ddwfl_onesrcline.c53 dwfl_onesrcline (Dwarf_Die *cudie, size_t idx) argument
70 if (idx >= cu->die.cu->lines->nlines)
76 return &cu->lines->idx[idx];
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DVertexArrayImpl.h25 virtual void setAttribute(size_t idx, const gl::VertexAttribute &attr) = 0;
26 virtual void setAttributeDivisor(size_t idx, GLuint divisor) = 0;
27 virtual void enableAttribute(size_t idx, bool enabledState) = 0;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DBits.java55 * @param idx {@code >= 0, < getMax(set);} which bit
58 public static boolean get(int[] bits, int idx) { argument
59 int arrayIdx = idx >> 5;
60 int bit = 1 << (idx & 0x1f);
68 * @param idx {@code >= 0, < getMax(set);} which bit
71 public static void set(int[] bits, int idx, boolean value) { argument
72 int arrayIdx = idx >> 5;
73 int bit = 1 << (idx & 0x1f);
86 * @param idx {@code >= 0, < getMax(set);} which bit
88 public static void set(int[] bits, int idx) { argument
100 clear(int[] bits, int idx) argument
166 findFirst(int[] bits, int idx) argument
193 findFirst(int value, int idx) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DCore.py37 for idx in keys:
38 if not value and not idx:
39 string += flag_fields[event_name][field_name]['values'][idx]
41 if idx and (value & idx) == idx:
44 string += flag_fields[event_name][field_name]['values'][idx]
46 value &= ~idx
56 for idx in keys:
57 if not value and not idx
[all...]
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_dense_alloc_test.cc37 IndexT idx = alloc.Alloc(&cache); local
38 blocks[i] = idx;
39 EXPECT_NE(idx, 0);
40 int *v = alloc.Map(idx);
45 IndexT idx = blocks[i]; local
46 int *v = alloc.Map(idx);
48 alloc.Free(&cache, idx);
/external/elfutils/0.153/lib/
H A Ddynamicsizehash.c74 size_t idx = 1 + hval % htab->size; local
76 if (htab->table[idx].hashval != 0)
80 if (htab->table[idx].hashval == hval
81 && COMPARE (htab->table[idx].data, val) == 0)
82 return idx;
89 if (idx <= hash)
90 idx = htab->size + idx - hash;
92 idx -= hash;
95 if (htab->table[idx]
106 insert_entry_2(NAME *htab, HASHTYPE hval, size_t idx, TYPE data) argument
241 size_t idx; local
268 size_t idx; local
291 size_t idx; local
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.h36 dw_attr_t GetAttrByIndex(uint32_t idx) const { return m_attributes.size() > idx ? m_attributes[idx].get_attr() : 0; }
37 dw_form_t GetFormByIndex(uint32_t idx) const { return m_attributes.size() > idx ? m_attributes[idx].get_form() : 0; }
38 bool GetAttrAndFormByIndex(uint32_t idx, dw_attr_t& attr, dw_form_t& form) const argument
40 if (m_attributes.size() > idx)
42 m_attributes[idx].get(attr, form);
49 // idx i
50 GetAttrAndFormByIndexUnchecked(uint32_t idx, dw_attr_t& attr, dw_form_t& form) const argument
[all...]
/external/ipsec-tools/src/racoon/
H A Dpolicy.h112 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, _priority, _created, idx) \
114 memset((idx), 0, sizeof(struct policyindex)); \
115 (idx)->dir = (_dir); \
116 (idx)->prefs = (ps); \
117 (idx)->prefd = (pd); \
118 (idx)->ul_proto = (ulp); \
119 (idx)->priority = (_priority); \
120 (idx)->created = (_created); \
121 memcpy(&(idx)->src, (s), sysdep_sa_len((struct sockaddr *)(s))); \
122 memcpy(&(idx)
[all...]
/external/elfutils/0.153/src/
H A Dxelf.h63 # define xelf_getphdr(elf, idx, name) name = elf32_getphdr (elf) + idx
64 # define xelf_getphdr_ptr(elf, idx, name) name = elf32_getphdr (elf) + idx
65 # define xelf_update_phdr(elf, idx, phdr) \
66 /* nothing */ ((void) (elf), (void) (idx), (void) (phdr), 1)
76 # define xelf_getsym(data, idx, name) \
77 name = &((Elf32_Sym *) (data)->d_buf)[idx]
78 # define xelf_getsym_ptr(data, idx, name) \
79 name = &((Elf32_Sym *) (data)->d_buf)[idx]
[all...]
/external/iproute2/lib/
H A Dll_map.c42 static inline struct ll_cache *idxhead(int idx) argument
44 return idx_head[idx & (IDXMAP_SIZE - 1)];
96 const char *ll_idx_n2a(unsigned idx, char *buf) argument
100 if (idx == 0)
103 for (im = idxhead(idx); im; im = im->idx_next)
104 if (im->index == idx)
107 snprintf(buf, IFNAMSIZ, "if%d", idx);
112 const char *ll_index_to_name(unsigned idx) argument
116 return ll_idx_n2a(idx, nbuf);
119 int ll_index_to_type(unsigned idx) argument
131 ll_index_to_flags(unsigned idx) argument
144 ll_index_to_addr(unsigned idx, unsigned char *addr, unsigned alen) argument
171 unsigned idx; local
[all...]
/external/libcxx/src/
H A Dstring.cpp66 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) argument
78 if (idx)
79 *idx = static_cast<size_t>(ptr - p);
86 as_integer(const string& func, const S& s, size_t* idx, int base);
92 as_integer(const string& func, const string& s, size_t* idx, int base ) argument
95 long r = as_integer_helper<long>( func, s, idx, base, strtol );
104 as_integer(const string& func, const string& s, size_t* idx, int base ) argument
106 return as_integer_helper<long>( func, s, idx, base, strtol );
112 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
114 return as_integer_helper<unsigned long>( func, s, idx, bas
120 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
128 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
137 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
149 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
157 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
165 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
173 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
183 as_float_helper(const string& func, const S& str, size_t* idx, F f ) argument
255 stoi(const string& str, size_t* idx, int base) argument
261 stoi(const wstring& str, size_t* idx, int base) argument
267 stol(const string& str, size_t* idx, int base) argument
273 stol(const wstring& str, size_t* idx, int base) argument
279 stoul(const string& str, size_t* idx, int base) argument
285 stoul(const wstring& str, size_t* idx, int base) argument
291 stoll(const string& str, size_t* idx, int base) argument
297 stoll(const wstring& str, size_t* idx, int base) argument
303 stoull(const string& str, size_t* idx, int base) argument
309 stoull(const wstring& str, size_t* idx, int base) argument
315 stof(const string& str, size_t* idx) argument
321 stof(const wstring& str, size_t* idx) argument
327 stod(const string& str, size_t* idx) argument
333 stod(const wstring& str, size_t* idx) argument
339 stold(const string& str, size_t* idx) argument
345 stold(const wstring& str, size_t* idx) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/
H A Dglapi_entrypoint.c202 int idx; local
229 idx = 7;
235 idx = 3;
237 code[idx + 0] = template[idx + 0];
238 __glapi_sparc_icache_flush(&code[idx - 1]);
239 code[idx + 1] = template[idx + 1];
240 code[idx + 2] = template[idx
[all...]
/external/mesa3d/src/mapi/glapi/
H A Dglapi_entrypoint.c202 int idx; local
229 idx = 7;
235 idx = 3;
237 code[idx + 0] = template[idx + 0];
238 __glapi_sparc_icache_flush(&code[idx - 1]);
239 code[idx + 1] = template[idx + 1];
240 code[idx + 2] = template[idx
[all...]
/external/compiler-rt/test/tsan/
H A Dbarrier.cc16 int idx = (int)(long)p; local
20 int left = idx - 1 >= 0 ? prev[idx - 1] : 0;
21 int right = idx + 1 < kSize ? prev[idx + 1] : 0;
22 curr[idx] = (left + right) / 2;
/external/chromium_org/third_party/skia/bench/
H A DVertBench.cpp35 static void load_2_tris(uint16_t idx[], int x, int y, int rb) { argument
37 idx[0] = n; idx[1] = n + 1; idx[2] = rb + n + 1;
38 idx[3] = n; idx[4] = rb + n + 1; idx[5] = n + rb;
47 uint16_t* idx = fIdx; local
58 load_2_tris(idx, x, y, COL + 1);
60 SkASSERT(idx[
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dcontiguous_container.cc24 for (size_t idx = 0; idx < size; idx++)
25 assert(!__asan_address_is_poisoned(beg + idx));
26 for (size_t idx = size; idx < capacity; idx++)
27 assert(__asan_address_is_poisoned(beg + idx));
37 for (size_t idx = 0; idx < capacit
[all...]
/external/lldb/source/Target/
H A DUnwindAssembly.cpp23 for (uint32_t idx = 0;
24 (create_callback = PluginManager::GetUnwindAssemblyCreateCallbackAtIndex(idx)) != NULL;
25 ++idx)
/external/skia/bench/
H A DVertBench.cpp35 static void load_2_tris(uint16_t idx[], int x, int y, int rb) { argument
37 idx[0] = n; idx[1] = n + 1; idx[2] = rb + n + 1;
38 idx[3] = n; idx[4] = rb + n + 1; idx[5] = n + rb;
47 uint16_t* idx = fIdx; local
58 load_2_tris(idx, x, y, COL + 1);
60 SkASSERT(idx[
[all...]
/external/chromium_org/third_party/opus/src/silk/
H A Dsort.c42 opus_int *idx, /* O Index vector for the sorted elements */
57 idx[ i ] = i;
65 idx[ j + 1 ] = idx[ j ]; /* Shift index */
68 idx[ j + 1 ] = i; /* Write index */
78 idx[ j + 1 ] = idx[ j ]; /* Shift index */
81 idx[ j + 1 ] = i; /* Write index */
90 opus_int *idx, /* O Index vector for the sorted elements */
105 idx[
40 silk_insertion_sort_increasing( opus_int32 *a, opus_int *idx, const opus_int L, const opus_int K ) argument
88 silk_insertion_sort_decreasing_int16( opus_int16 *a, opus_int *idx, const opus_int L, const opus_int K ) argument
[all...]
/external/compiler-rt/test/msan/
H A Dchained_origin_memcpy.cc24 volatile int idx = 30; variable
28 xx[idx] = a; xx[idx + 10] = b;
46 return yy[idx + OFFSET];
/external/libopus/silk/
H A Dsort.c42 opus_int *idx, /* O Index vector for the sorted elements */
57 idx[ i ] = i;
65 idx[ j + 1 ] = idx[ j ]; /* Shift index */
68 idx[ j + 1 ] = i; /* Write index */
78 idx[ j + 1 ] = idx[ j ]; /* Shift index */
81 idx[ j + 1 ] = i; /* Write index */
90 opus_int *idx, /* O Index vector for the sorted elements */
105 idx[
40 silk_insertion_sort_increasing( opus_int32 *a, opus_int *idx, const opus_int L, const opus_int K ) argument
88 silk_insertion_sort_decreasing_int16( opus_int16 *a, opus_int *idx, const opus_int L, const opus_int K ) argument
[all...]

Completed in 6182 milliseconds

1234567891011>>