Searched refs:idx (Results 76 - 100 of 1654) sorted by relevance

1234567891011>>

/external/elfutils/src/libdwfl/
H A Ddwfl_validate_address.c39 int idx = INTUSE(dwfl_module_relocate_address) (mod, &relative); local
40 if (idx < 0)
53 if (offset_idx != idx)
H A Dlines.c43 cu->lines = malloc (offsetof (struct Dwfl_Lines, idx[nlines]));
48 cu->lines->idx[i].idx = i;
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetKey.java59 int idx = name.lastIndexOf('.');
62 idx = name.substring(0, idx).lastIndexOf('.');
63 if (idx == -1) {
64 idx = name.lastIndexOf('.');
67 if (idx <= 0 || idx == name.length() - 1)
70 return name.substring(idx+1).toLowerCase();
74 int idx = name.lastIndexOf('/');
75 if (idx <
[all...]
/external/skia/src/utils/
H A DSkMeshUtils.cpp51 uint16_t* idx = fIndices; local
55 *idx++ = index;
56 *idx++ = index + rows + 1;
57 *idx++ = index + 1;
59 *idx++ = index + 1;
60 *idx++ = index + rows + 1;
61 *idx++ = index + rows + 2;
91 SkMeshIndices idx; local
93 if (idx.init(bitmap.width(), bitmap.height(), rows, cols)) {
99 rows * cols, verts, idx
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_dense_alloc.h67 void Free(Cache *c, IndexT idx) { argument
68 DCHECK_NE(idx, 0);
71 c->cache[c->pos++] = idx;
74 T *Map(IndexT idx) { argument
75 DCHECK_NE(idx, 0);
76 DCHECK_LE(idx, kL1Size * kL2Size);
77 return &map_[idx / kL2Size][idx % kL2Size];
83 IndexT idx = c->cache[--c->pos]; local
84 *(IndexT*)Map(idx)
119 IndexT idx = freelist_; local
128 IndexT idx = c->cache[--c->pos]; local
[all...]
H A Dtsan_sync.cc64 u32 idx = block_alloc_.Alloc(&thr->block_cache); local
65 MBlock *b = block_alloc_.Map(idx);
71 *meta = idx | kFlagBlock;
90 u32 idx = *meta; local
91 if (idx == 0) {
97 while (idx != 0) {
98 if (idx & kFlagBlock) {
99 block_alloc_.Free(&thr->block_cache, idx & ~kFlagMask);
101 } else if (idx & kFlagSync) {
102 DCHECK(idx
175 u32 idx = *meta; local
203 u32 idx = idx0; local
267 u32 idx = *src_meta; local
[all...]
/external/linux-tools-perf/src/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
H A DCore.pm39 foreach my $idx (sort {$a <=> $b} keys %trace_flags) {
40 if (!$value && !$idx) {
45 if ($idx && ($value & $idx) == $idx) {
49 $string .= "$trace_flags{$idx}";
51 $value &= ~$idx;
69 foreach my $idx (sort {$a <=> $b} keys %{$flag_fields{$event_name}{$field_name}{"values"}}) {
70 if (!$value && !$idx) {
71 $string .= "$flag_fields{$event_name}{$field_name}{'values'}{$idx}";
[all...]
/external/lldb/source/Interpreter/
H A DOptionValueArray.cpp98 int32_t idx = Args::StringToSInt32(index_str.c_str(), INT32_MAX, 0, NULL); local
99 if (idx != INT32_MAX)
103 if (idx < 0)
106 new_idx = array_count - idx;
111 new_idx = idx;
127 error.SetErrorStringWithFormat("index %i is not valid for an empty array", idx);
128 else if (idx > 0)
129 error.SetErrorStringWithFormat("index %i out of range, valid values are 0 through %" PRIu64, idx, (uint64_t)(array_count - 1));
131 error.SetErrorStringWithFormat("negative index %i out of range, valid values are -1 through -%" PRIu64, idx, (uint64_t)array_count);
178 uint32_t idx local
225 const int idx = Args::StringToSInt32(args.GetArgumentAtIndex(i), INT32_MAX); local
274 uint32_t idx = Args::StringToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX); local
[all...]
/external/google-breakpad/src/common/mac/
H A Dstring_utilities.h46 // Return the idx'th decimal integer in str, separated by non-decimal-digits
47 // E.g., str = 10.4.8, idx = 1 -> 4
48 unsigned int IntegerValueAtIndex(string &str, unsigned int idx);
/external/lldb/scripts/Python/interface/
H A DSBFileSpecList.i37 FindFileIndex (uint32_t idx, const SBFileSpec &sb_file, bool full);
40 GetFileSpecAtIndex (uint32_t idx) const;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.h87 operator[] (uint32_t idx) argument
89 // "idx" must be valid
90 return m_entries[idx];
94 operator[] (uint32_t idx) const
96 // "idx" must be valid
97 return m_entries[idx];
/external/lldb/tools/debugserver/source/
H A DTTYState.h51 bool GetState(uint32_t idx, int fd, bool saveProcessGroup);
52 bool SetState(uint32_t idx) const;
54 bool ValidStateIndex(uint32_t idx) const { return idx < NumStates(); }
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dencode_lpc_swb.h104 * -idx : pointer to quantization indices.
108 int* idx,
174 * -idx : pointer to quantiztion indices.
182 const int* idx,
228 * -idx : quantization indices
233 int* idx);
242 * -idx : pointer to quantization indices.
248 const int* idx,
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DQuantityFormatter.java28 int idx = 0;
30 INDEX_MAP.put("other", idx++);
31 INDEX_MAP.put("zero", idx++);
32 INDEX_MAP.put("one", idx++);
33 INDEX_MAP.put("two", idx++);
34 INDEX_MAP.put("few", idx++);
35 INDEX_MAP.put("many", idx++);
37 MAX_INDEX = idx;
61 Integer idx = INDEX_MAP.get(variant);
62 if (idx
[all...]
/external/lldb/source/Core/
H A DValueObjectList.cpp77 ValueObjectList::GetValueObjectAtIndex (size_t idx) argument
80 if (idx < m_value_objects.size())
81 valobj_sp = m_value_objects[idx];
86 ValueObjectList::RemoveValueObjectAtIndex (size_t idx) argument
89 if (idx < m_value_objects.size())
91 valobj_sp = m_value_objects[idx];
92 m_value_objects.erase (m_value_objects.begin() + idx);
98 ValueObjectList::SetValueObjectAtIndex (size_t idx, const ValueObjectSP &valobj_sp) argument
100 if (idx >= m_value_objects.size())
101 m_value_objects.resize (idx
[all...]
H A DAddressResolver.cpp64 AddressResolver::GetAddressRangeAtIndex (size_t idx) argument
66 return m_address_ranges[idx];
/external/compiler-rt/test/asan/TestCases/
H A Dintra-object-overflow.cc25 int idx = argc == 2 ? atoi(argv[1]) : 0; local
27 foo->set(idx, 42);
/external/libdrm/tests/
H A Dgetclient.c45 client.idx = 0;
54 client.idx = 0x7fffffff;
/external/mesa3d/src/mesa/drivers/dri/r200/server/
H A Dradeon_macros.h88 #define OUTPAL_START(idx) \
90 OUTREG8(RADEON_PALETTE_INDEX, (idx)); \
103 #define OUTPAL(idx, r, g, b) \
105 OUTPAL_START((idx)); \
109 #define INPAL_START(idx) \
111 OUTREG(RADEON_PALETTE_INDEX, (idx) << 16); \
116 #define PAL_SELECT(idx) \
118 if (!idx) { \
/external/mesa3d/src/mesa/drivers/dri/radeon/server/
H A Dradeon_macros.h88 #define OUTPAL_START(idx) \
90 OUTREG8(RADEON_PALETTE_INDEX, (idx)); \
103 #define OUTPAL(idx, r, g, b) \
105 OUTPAL_START((idx)); \
109 #define INPAL_START(idx) \
111 OUTREG(RADEON_PALETTE_INDEX, (idx) << 16); \
116 #define PAL_SELECT(idx) \
118 if (!idx) { \
/external/skia/src/gpu/
H A DGrPipeline.h56 const GrPendingFragmentStage& getColorStage(int idx) const {
57 SkASSERT(idx < this->numColorFragmentStages());
58 return fFragmentStages[idx];
60 const GrPendingFragmentStage& getCoverageStage(int idx) const {
61 SkASSERT(idx < this->numCoverageFragmentStages());
62 return fFragmentStages[fNumColorStages + idx];
64 const GrPendingFragmentStage& getFragmentStage(int idx) const {
65 return fFragmentStages[idx];
/external/compiler-rt/lib/tsan/benchmarks/
H A Dmini_bench_local.cc12 void Run(int idx) { argument
14 a[i + idx * n] = i;
18 long idx = (long)arg; local
19 printf("Thread %ld started\n", idx);
21 Run(idx);
22 printf("Thread %ld done\n", idx);
/external/elfutils/src/libelf/
H A Delf_getscn.c42 elf_getscn (elf, idx)
44 size_t idx;
66 if (idx < runp->max)
68 if (idx < runp->cnt)
69 result = &runp->data[idx];
75 idx -= runp->max;
/external/freetype/src/cff/
H A Dcffload.c202 cff_index_read_offset( CFF_Index idx, argument
206 FT_Stream stream = idx->stream;
211 if ( !FT_STREAM_READ( tmp, idx->off_size ) )
216 for ( nn = 0; nn < idx->off_size; nn++ )
226 cff_index_init( CFF_Index idx, argument
235 FT_MEM_ZERO( idx, sizeof ( *idx ) );
237 idx->stream = stream;
238 idx->start = FT_STREAM_POS();
257 idx
383 cff_index_get_pointers( CFF_Index idx, FT_Byte*** table, FT_Byte** pool ) argument
568 cff_index_forget_element( CFF_Index idx, FT_Byte** pbytes ) argument
586 CFF_Index idx = &font->name_index; local
1304 cff_subfont_load( CFF_SubFont font, CFF_Index idx, FT_UInt font_index, FT_Stream stream, FT_ULong base_offset, FT_Library library ) argument
1553 FT_UInt idx; local
1662 FT_UInt idx; local
[all...]
/external/lldb/include/lldb/Target/
H A DUnwind.h60 uint32_t idx; local
62 for (idx = 0; idx < end_idx; idx++)
64 if (!DoGetFrameInfoAtIndex (idx, cfa, pc))
69 return idx;

Completed in 683 milliseconds

1234567891011>>