Searched refs:idx (Results 201 - 225 of 1654) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
H A Dwrite.py117 uni(port), (time, benched['sizes'][idx])
118 ) for idx, (port, time) in enumerate(benched['times']))
123 for idx, (port, _) in enumerate(names):
132 idx == 0 and ' ' or '',
135 idx == 0 and '\\*' or ['=', '>', '<'][
142 for idx, row in enumerate(rows):
143 widths[idx] = max(widths[idx], max(map(len, row)))
158 for idx, (version, tables) in enumerate(pythons):
159 if idx
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
H A Dwrite.py120 uni(port), (time, benched['sizes'][idx])
121 ) for idx, (port, time) in enumerate(benched['times']))
126 for idx, (port, _) in enumerate(names):
135 idx == 0 and ' ' or '',
138 idx == 0 and '\\*' or ['=', '>', '<'][
145 for idx, row in enumerate(rows):
146 widths[idx] = max(widths[idx], max(map(len, row)))
161 for idx, (version, tables) in enumerate(pythons):
162 if idx
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCompactDecimalDataCache.java333 * @param idx the index (log10 value of the number) 0 <= idx < MAX_DIGITS
341 String pluralVariant, int idx, String template, ULocale locale, String style,
348 "' for variant '" +pluralVariant + "' for 10^" + idx +
353 saveUnit(new DecimalFormat.Unit(prefix, suffix), pluralVariant, idx, result.units);
359 return idx + 1;
374 for (int idx = 0; idx < len; idx++) {
375 char ch = prefixOrSuffix.charAt(idx);
340 populatePrefixSuffix( String pluralVariant, int idx, String template, ULocale locale, String style, Data result) argument
442 propagateOtherToMissing( int idx, Map<String, DecimalFormat.Unit[]> units) argument
452 copyFromPreviousIndex(int idx, Map<String, DecimalFormat.Unit[]> units) argument
462 saveUnit( DecimalFormat.Unit unit, String pluralVariant, int idx, Map<String, DecimalFormat.Unit[]> units) argument
[all...]
/external/lldb/source/DataFormatters/
H A DNSArray.cpp118 lldb_private::formatters::NSArrayMSyntheticFrontEnd::GetChildAtIndex (size_t idx) argument
122 if (idx >= CalculateNumChildren())
125 size_t pyhs_idx = idx;
131 idx_name.Printf("[%zu]",idx);
187 uint32_t idx = ExtractIndexFromString(item_name); local
188 if (idx < UINT32_MAX && idx >= CalculateNumChildren())
190 return idx;
224 uint32_t idx = ExtractIndexFromString(item_name); local
225 if (idx < UINT32_MA
268 GetChildAtIndex(size_t idx) argument
342 GetChildAtIndex(size_t idx) argument
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc_emit.c287 unsigned reg, idx; local
297 for (idx = 0; idx < 4; idx++) {
298 if (!(ifs->constant_flags[reg] & (1 << idx)) ||
299 ifs->constants[reg][idx] == c0) {
300 ifs->constants[reg][idx] = c0;
301 ifs->constant_flags[reg] |= 1 << idx;
304 return swizzle(UREG(REG_TYPE_CONST, reg), idx, ZERO, ZERO, ONE);
317 unsigned reg, idx; local
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DMultidimensionalCounter.java225 int idx = 0;
229 ++idx;
231 --idx;
233 indices[i] = idx;
236 int idx = 1;
238 count += idx;
239 ++idx;
241 --idx;
242 indices[last] = idx;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DNonNullParamChecker.cpp72 for (unsigned idx = 0; idx < NumArgs; ++idx) {
82 bool haveAttrNonNull = AttrNonNull[idx];
86 if (idx < parms.size())
87 haveAttrNonNull = parms[idx]->hasAttr<NonNullAttr>();
94 const Expr *ArgE = Call.getArgExpr(idx);
95 SVal V = Call.getArgSVal(idx);
153 R->addRange(Call.getArgSourceRange(idx));
/external/google-breakpad/src/common/linux/
H A Dfile_id.cc174 for (unsigned int idx = 0;
175 (buffer_idx < buffer_length) && (idx < kMDGUIDSize);
176 ++idx) {
177 int hi = (identifier_swapped[idx] >> 4) & 0x0F;
178 int lo = (identifier_swapped[idx]) & 0x0F;
180 if (idx == 4 || idx == 6 || idx == 8 || idx == 10)
/external/libvncserver/utils/
H A Dgit2cl.pl174 my $idx = $length_remaining - 1;
175 if ($idx < 0) { $idx = 0 };
176 while ($idx > 0)
178 if (substr ($this_line, $idx, 1) =~ /\s/)
180 my $line_now = substr ($this_line, 0, $idx);
181 my $next_line = substr ($this_line, $idx);
223 $idx--;
227 if ($idx == 0)
/external/lldb/source/Host/common/
H A DTerminal.cpp264 // Restore the state at index "idx".
269 TerminalStateSwitcher::Restore (uint32_t idx) const
272 if (idx >= num_states)
276 if (m_currentState < num_states && (idx == m_currentState) && m_ttystates[idx].IsValid())
281 if (m_ttystates[idx].Restore())
283 m_currentState = idx;
293 // Save the state at index "idx" for file descriptor "fd" and
299 TerminalStateSwitcher::Save (uint32_t idx, int fd, bool save_process_group) argument
302 if (idx < num_state
[all...]
/external/mesa3d/src/glx/
H A Dvertarr.c161 const int idx = format - GL_V2F; local
164 /* All valid formats are on the range [GL_V2F, GL_V2F+0x0D]. Since idx
165 * is just the format biased by -GL_V2F, all valid idx values are on the
168 if ((idx < 0) || (idx > 0x0D)) {
184 offsets[i] = (modes[idx][i].count != 0) ? size : -1;
185 size += modes[idx][i].size;
194 __indirect_glTexCoordPointer(modes[idx][0].count, GL_FLOAT,
199 __indirect_glColorPointer(modes[idx][1].count, modes[idx][
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DBase64.java54 for (int idx = 0; idx < 255; idx++)
56 ascii[idx] = INVALID;
59 for (int idx = 0; idx < base64.length; idx++)
61 ascii[base64[idx]] = (byte) idx;
/external/elfutils/src/lib/
H A Dfixedsizehash.h136 size_t idx = 1 + hval % htab->nslots; local
138 if (htab->table[idx].hval != 0)
143 if (htab->table[idx].hval == hval
144 && COMPARE (data, ENTRYP (htab->table[idx])) == 0)
145 return &htab->table[idx];
152 if (idx <= hash)
153 idx = htab->nslots + idx - hash;
155 idx -= hash;
157 if (htab->table[idx]
[all...]
/external/lldb/source/Core/
H A DStringList.cpp97 StringList::GetStringAtIndex (size_t idx) const
99 if (idx < m_strings.size())
100 return m_strings[idx].c_str();
164 StringList::InsertStringAtIndex (size_t idx, const char *str) argument
168 if (idx < m_strings.size())
169 m_strings.insert (m_strings.begin() + idx, str);
176 StringList::DeleteStringAtIndex (size_t idx) argument
178 if (idx < m_strings.size())
179 m_strings.erase (m_strings.begin() + idx);
223 size_t idx
[all...]
/external/lldb/scripts/Python/interface/
H A DSBBlock.i82 GetRangeStartAddress (uint32_t idx);
85 GetRangeEndAddress (uint32_t idx);
107 def get_range_at_index(self, idx):
108 if idx < self.GetNumRanges():
109 return [self.GetRangeStartAddress(idx), self.GetRangeEndAddress(idx)]
142 for idx in range(self.num_ranges):
143 self.ranges_array.append ([self.GetRangeStartAddress(idx), self.GetRangeEndAddress(idx)])
H A DSBInstructionList.i45 GetInstructionAtIndex (uint32_t idx);
77 for idx in range(self.GetSize()):
78 inst = self.GetInstructionAtIndex(idx)
H A DSBType.i205 GetFieldAtIndex (uint32_t idx);
208 GetDirectBaseClassAtIndex (uint32_t idx);
211 GetVirtualBaseClassAtIndex (uint32_t idx);
223 GetTemplateArgumentType (uint32_t idx);
226 GetTemplateArgumentKind (uint32_t idx);
286 for idx in range(self.GetNumberOfDirectBaseClasses()):
287 bases.append(self.GetDirectBaseClassAtIndex(idx))
293 for idx in range(self.GetNumberOfVirtualBaseClasses()):
294 vbases.append(self.GetVirtualBaseClassAtIndex(idx))
300 for idx i
[all...]
/external/elfutils/src/backends/
H A Dia64_regs.c174 const size_t idx = regno - (334 + 8); local
176 if (idx == 1 || idx == 2)
178 if (idx < sizeof named_ar / sizeof named_ar[0]
179 && named_ar[idx][0] != '\0')
180 return stpcpy (name, named_ar[idx]) + 1 - name;
/external/elfutils/src/libelf/
H A Delf_strptr.c41 elf_strptr (elf, idx, offset)
43 size_t idx;
67 if (idx < runp->max)
69 if (idx < runp->cnt)
70 strscn = &runp->data[idx];
79 idx -= runp->max;
/external/freetype/src/cff/
H A Dcf2stack.c176 CF2_UInt idx )
180 if ( idx >= cf2_stack_count( stack ) )
186 switch ( stack->buffer[idx].type )
189 return cf2_intToFixed( stack->buffer[idx].u.i );
191 return cf2_fracToFixed( stack->buffer[idx].u.f );
193 return stack->buffer[idx].u.r;
/external/icu/icu4c/source/io/
H A Dustream.cpp83 int32_t idx = 0; local
132 buffer[idx++] = ch;
133 while (idx > 0) {
134 stream.putback(buffer[--idx]);
154 idx = 0;
157 buffer[idx++] = ch;
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp56 const uint32_t idx = GetNextIndex(); local
57 m_packets[idx].packet.assign (1, packet_char);
58 m_packets[idx].type = type;
59 m_packets[idx].bytes_transmitted = bytes_transmitted;
60 m_packets[idx].packet_idx = m_total_packet_count;
61 m_packets[idx].tid = Host::GetCurrentThreadID();
74 const uint32_t idx = GetNextIndex(); local
75 m_packets[idx].packet.assign (src, 0, src_len);
76 m_packets[idx].type = type;
77 m_packets[idx]
91 const uint32_t idx = NormalizeIndex (i); local
115 const uint32_t idx = NormalizeIndex (i); local
412 uint32_t idx; local
[all...]
/external/pdfium/third_party/freetype/src/cff/
H A Dcf2stack.c176 CF2_UInt idx )
180 if ( idx >= cf2_stack_count( stack ) )
186 switch ( stack->buffer[idx].type )
189 return cf2_intToFixed( stack->buffer[idx].u.i );
191 return cf2_fracToFixed( stack->buffer[idx].u.f );
193 return stack->buffer[idx].u.r;
/external/valgrind/none/tests/x86/
H A Dbug152818-x86.c90 int idx; local
91 for (idx = 0; idx < sizeof (lens)/sizeof(lens[0]); ++idx)
130 len = lens[idx];
131 df = (idx >= (sizeof(lens)/sizeof(lens[0]))/2);
/external/ceres-solver/internal/ceres/
H A Dincomplete_lq_factorization_test.cc88 int idx = 0; local
90 rows[i] = idx;
94 cols[idx] = j;
95 values[idx] = v;
96 ++idx;
100 rows[10] = idx;
148 for (int idx = matrix.rows()[1]; idx < matrix.rows()[2]; ++idx) {
149 EXPECT_EQ(matrix.cols()[idx], id
[all...]

Completed in 1506 milliseconds

1234567891011>>