Searched refs:idx (Results 151 - 175 of 1654) sorted by relevance

1234567891011>>

/external/lldb/scripts/Python/interface/
H A DSBStringList.i38 GetStringAtIndex (size_t idx);
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableArray.cpp76 CFCMutableArray::GetValueAtIndex(CFIndex idx) const
82 if (0 <= idx && idx < num_array_items)
84 return ::CFArrayGetValueAtIndex (array, idx);
91 CFCMutableArray::SetValueAtIndex(CFIndex idx, const void *value) argument
97 if (0 <= idx && idx < num_array_items)
99 ::CFArraySetValueAtIndex (array, idx, value);
H A DCFCMutableArray.h29 const void * GetValueAtIndex(CFIndex idx) const;
30 bool SetValueAtIndex(CFIndex idx, const void *value);
/external/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp118 for (size_t idx = 0; idx < file_spec_list.GetSize(); ++idx)
121 const FileSpec fspec = file_spec_list.GetFileSpecAtIndex (idx);
162 for (size_t idx = 0; idx < sizeof(g_sections) / sizeof(g_sections[0]); ++idx)
164 SectionType section_type = g_sections[idx];
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_linkage.c87 unsigned idx = finst->Dst[i].Register.Index; local
88 if(semantic_name[idx] == TGSI_SEMANTIC_GENERIC)
90 if(!util_semantic_set_test_and_set(set, semantic_index[idx]))
100 unsigned idx = finst->Src[i].Register.Index; local
101 if(semantic_name[idx] == TGSI_SEMANTIC_GENERIC)
103 if(!util_semantic_set_test_and_set(set, semantic_index[idx]))
145 unsigned idx = 0; local
147 layout[idx++] = i;
/external/pdfium/third_party/freetype/src/truetype/
H A Dttgload.h39 FT_UInt idx,
45 FT_UInt idx,
/external/harfbuzz_ng/src/
H A Dhb-buffer-private.hh63 unsigned int idx; /* Cursor into ->info and ->pos arrays */ member in struct:hb_buffer_t
72 inline hb_glyph_info_t &cur (unsigned int i = 0) { return info[idx + i]; }
73 inline hb_glyph_info_t cur (unsigned int i = 0) const { return info[idx + i]; }
75 inline hb_glyph_position_t &cur_pos (unsigned int i = 0) { return pos[idx + i]; }
76 inline hb_glyph_position_t cur_pos (unsigned int i = 0) const { return pos[idx + i]; }
103 { return have_output? out_len : idx; }
105 { return len - idx; }
132 /* Makes a copy of the glyph at idx to output and replace glyph_index */
135 /* Copies glyph at idx to output but doesn't advance idx */
[all...]
/external/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp48 for (unsigned idx = 0; ; ++idx) {
49 if (ItinData->isEndMarker(idx))
52 const InstrStage *IS = ItinData->beginStage(idx);
53 const InstrStage *E = ItinData->endStage(idx);
134 unsigned idx = MCID->getSchedClass(); local
135 for (const InstrStage *IS = ItinData->beginStage(idx),
136 *E = ItinData->endStage(idx); IS != E; ++IS) {
194 unsigned idx = MCID->getSchedClass(); local
195 for (const InstrStage *IS = ItinData->beginStage(idx),
[all...]
/external/opencv/cv/src/
H A D_cvimgproc.h45 #define CV_COPY( dst, src, len, idx ) \
46 for( (idx) = 0; (idx) < (len); (idx)++) (dst)[idx] = (src)[idx]
48 #define CV_SET( dst, val, len, idx ) \
49 for( (idx) = 0; (idx) < (len); (idx)
[all...]
/external/libcxxabi/src/
H A Dcxa_vector.cpp77 st_cxa_cleanup ( void *ptr, size_t &idx, size_t element_size, destruct_f destructor ) argument
78 : ptr_ ( ptr ), idx_ ( idx ), element_size_ ( element_size ),
210 size_t idx = 0; local
213 st_cxa_cleanup cleanup ( dest_array, idx, element_size, destructor );
215 for ( idx = 0; idx < element_count;
216 ++idx, src_ptr += element_size, dest_ptr += element_size )
235 size_t idx; local
237 st_cxa_cleanup cleanup ( array_address, idx, element_size, destructor );
240 for ( idx
258 size_t idx = element_count; local
283 size_t idx = element_count; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DBuildResults.java296 int idx = getDimIndex(dim_id);
297 if (idx < 0) return Double.NaN;
298 return this.average[idx];
360 int idx = this.name.substring(start).indexOf(token);
361 if (idx < 0) return false;
362 start += idx;
461 int idx = 0;
479 idx = i;
483 idx = i;
490 if (this.average[idx] !
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
H A DMSOutlookKeyIdCalculator.java314 int idx = 0;
318 // E = rotateLeft(A, 5) + f(B, C, D) + E + X[idx++] + Y1
320 E += (A << 5 | A >>> 27) + f(B, C, D) + X[idx++] + Y1;
323 D += (E << 5 | E >>> 27) + f(A, B, C) + X[idx++] + Y1;
326 C += (D << 5 | D >>> 27) + f(E, A, B) + X[idx++] + Y1;
329 B += (C << 5 | C >>> 27) + f(D, E, A) + X[idx++] + Y1;
332 A += (B << 5 | B >>> 27) + f(C, D, E) + X[idx++] + Y1;
341 // E = rotateLeft(A, 5) + h(B, C, D) + E + X[idx++] + Y2
343 E += (A << 5 | A >>> 27) + h(B, C, D) + X[idx++] + Y2;
346 D += (E << 5 | E >>> 27) + h(A, B, C) + X[idx
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DSHA1Digest.java203 int idx = 0;
207 // E = rotateLeft(A, 5) + f(B, C, D) + E + X[idx++] + Y1
209 E += (A << 5 | A >>> 27) + f(B, C, D) + X[idx++] + Y1;
212 D += (E << 5 | E >>> 27) + f(A, B, C) + X[idx++] + Y1;
215 C += (D << 5 | D >>> 27) + f(E, A, B) + X[idx++] + Y1;
218 B += (C << 5 | C >>> 27) + f(D, E, A) + X[idx++] + Y1;
221 A += (B << 5 | B >>> 27) + f(C, D, E) + X[idx++] + Y1;
230 // E = rotateLeft(A, 5) + h(B, C, D) + E + X[idx++] + Y2
232 E += (A << 5 | A >>> 27) + h(B, C, D) + X[idx++] + Y2;
235 D += (E << 5 | E >>> 27) + h(A, B, C) + X[idx
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dencode_lpc_swb.c242 * -idx : pointer to quantization indices.
251 WebRtc_Word32 idx; local
283 idx = (WebRtc_Word32)floor((*data - leftRecPoint[cntr]) /
285 if(idx < 0)
287 idx = 0;
289 else if(idx >= numQuantCell[cntr])
291 idx = numQuantCell[cntr] - 1;
294 *data++ = leftRecPoint[cntr] + idx * quantizationStepSize;
295 *recIdx++ = idx;
307 * -idx
315 WebRtcIsac_DequantizeLpcParam( const int* idx, double* out, WebRtc_Word16 bandwidth) argument
603 WebRtcIsac_QuantizeLpcGain( double* data, int* idx) argument
641 WebRtcIsac_DequantizeLpcGain( const int* idx, double* out) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DCRLReason.java142 Integer idx = Integers.valueOf(value);
144 if (!table.containsKey(idx))
146 table.put(idx, new CRLReason(value));
149 return (CRLReason)table.get(idx);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DWorkList.h36 const CFGBlock *B, unsigned idx)
40 blockIdx(idx) {}
69 void enqueue(ExplodedNode *N, const CFGBlock *B, unsigned idx) { argument
70 enqueue(WorkListUnit(N, CurrentCounter, B, idx));
35 WorkListUnit(ExplodedNode *N, BlockCounter C, const CFGBlock *B, unsigned idx) argument
/external/clang/lib/Headers/
H A Dammintrin.h33 #define _mm_extracti_si64(x, len, idx) \
35 (char)(len), (char)(idx)))
43 #define _mm_inserti_si64(x, y, len, idx) \
46 (char)(len), (char)(idx)))
/external/elfutils/src/libdwfl/
H A Ddwfl_dwarf_line.c39 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
/external/elfutils/src/libelf/
H A Delf_getshdrnum.c47 int idx; local
58 idx = elf->state.elf.scns_last->cnt;
59 if (idx != 0
66 *dst = 1 + elf->state.elf.scns_last->data[idx - 1].index;
/external/freetype/src/sfnt/
H A Dttpost.h34 FT_UInt idx,
/external/jetty/src/java/org/eclipse/jetty/util/
H A DHostMap.java85 int idx = 0;
90 if ((idx = domain.indexOf('.')) > 0)
92 domain = domain.substring(idx+1);
94 } while (idx > 0);
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DIDList.java64 * @param idx The index to move
68 public boolean moveToNew(int idx){ argument
69 if (newLen == 0 || newList[newLen-1] != idx)
71 newList[newLen++] = idx;
73 // find idx in oldList, if removed successfuly, return true.
75 if (oldList[i] == idx){
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.h53 RangeAtIndex(uint32_t idx) const
55 return m_aranges.GetEntryAtIndex (idx);
76 OffsetAtIndex(uint32_t idx) const
78 const Range *range = m_aranges.GetEntryAtIndex (idx);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_manager.h50 gl_buffer_index idx);
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttpost.h34 FT_UInt idx,

Completed in 697 milliseconds

1234567891011>>