Searched refs:idx (Results 276 - 300 of 2166) sorted by relevance

<<11121314151617181920>>

/external/lldb/include/lldb/API/
H A DSBFileSpecList.h45 FindFileIndex (uint32_t idx, const SBFileSpec &sb_file, bool full);
48 GetFileSpecAtIndex (uint32_t idx) const;
/external/lldb/include/lldb/Host/
H A DTerminal.h211 /// Restore the TTY state for state at index \a idx.
218 Restore (uint32_t idx) const;
221 /// Save the TTY state information for the state at index \a idx.
226 /// @param[in] idx
241 Save (uint32_t idx, int fd, bool save_process_group);
/external/mesa3d/src/egl/main/
H A Deglcurrent.h86 _eglConvertApiFromIndex(EGLint idx) argument
88 return _EGL_API_FIRST_API + idx;
/external/mesa3d/src/glsl/tests/
H A Duniform_initializer_utils.cpp51 const unsigned idx = data_size + i; local
53 if (storage[idx].u != 0xBADDC0DE)
55 << "storage[" << idx << "].u = " << storage[idx].u
82 const unsigned idx = (i + data_index_base) % Elements(values); local
87 data.i[i] = values[idx];
90 data.f[i] = float(values[idx]);
93 data.b[i] = bool(values[idx]);
/external/openssl/crypto/ecdh/
H A Decdh.h99 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg);
100 void *ECDH_get_ex_data(EC_KEY *d, int idx);
/external/openssl/include/openssl/
H A Decdh.h99 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg);
100 void *ECDH_get_ex_data(EC_KEY *d, int idx);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffload.h43 cff_index_access_element( CFF_Index idx,
49 cff_index_forget_element( CFF_Index idx,
/external/chromium_org/cc/resources/
H A Dpicture_layer_tiling_set.h61 PictureLayerTiling* tiling_at(size_t idx) { return tilings_[idx]; } argument
62 const PictureLayerTiling* tiling_at(size_t idx) const {
63 return tilings_[idx];
/external/chromium_org/chromeos/network/
H A Dgeolocation_handler_unittest.cc47 void AddAccessPoint(int idx) { argument
51 idx, 0, 0, 0, 0, 0);
52 std::string channel = base::StringPrintf("%d", idx);
53 std::string strength = base::StringPrintf("%d", idx * 10);
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-string-methods.js39 String.prototype.charAt = function(idx) { return 'g'; };
/external/compiler-rt/lib/tsan/benchmarks/
H A Dvts_many_threads_bench.cc55 long idx = (long)arg; local
61 printf("Thread %ld go!\n", idx);
62 int offset = idx * kNumMutexes / n_threads;
67 printf("Thread %ld done\n", idx);
/external/libhevc/decoder/
H A Dihevcd_parse_slice_header.h41 WORD32 idx,
/external/lldb/source/API/
H A DSBFileSpecList.cpp84 SBFileSpecList::FindFileIndex (uint32_t idx, const SBFileSpec &sb_file, bool full) argument
86 return m_opaque_ap->FindFileIndex (idx, sb_file.ref(), full);
90 SBFileSpecList::GetFileSpecAtIndex (uint32_t idx) const
93 new_spec.SetFileSpec(m_opaque_ap->GetFileSpecAtIndex(idx));
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIECollection.h34 GetDIEPtrAtIndex(uint32_t idx) const;
/external/lldb/test/functionalities/watchpoint/watchpoint_set_command/
H A Dmain.cpp37 static unsigned idx = 0; // Well-behaving thread only writes into indexs from 0..6. local
41 // idx valid range is [0, 6].
42 if (idx > 6)
43 idx = 0;
50 unsigned index = idx++;
/external/llvm/lib/Target/PowerPC/
H A DPPCMachineFunctionInfo.h118 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; } argument
168 void setCRSpillFrameIndex(int idx) { CRSpillFrameIndex = idx; } argument
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsnames.h140 /* idx :: The index of the `name' string. */
159 FT_UInt idx,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftsnames.h140 /* idx :: The index of the `name' string. */
159 FT_UInt idx,
/external/openssl/crypto/x509/
H A Dx509_lu.c434 int idx; local
454 idx = sk_X509_OBJECT_find(h,&stmp);
455 if (idx >= 0 && pnmatch)
461 for (tidx = idx + 1; tidx < sk_X509_OBJECT_num(h); tidx++)
469 return idx;
482 int idx; local
483 idx = X509_OBJECT_idx_by_subject(h, type, name);
484 if (idx==-1) return NULL;
485 return sk_X509_OBJECT_value(h, idx);
490 int i, idx, cn local
539 int i, idx, cnt; local
585 int idx, i; local
628 int i, ok, idx, ret; local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_lib.c103 size_t idx; local
111 if (!sk_X509V3_EXT_METHOD_find(ext_list, &idx, &tmp))
113 return sk_X509V3_EXT_METHOD_value(ext_list, idx);
205 * The "idx" variable returns the last found extension and can
208 * due to a badly encoded certificate so if idx is NULL we
219 void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx)
225 if(idx) *idx = -1;
229 if(idx) lastpos = *idx
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftsnames.c44 FT_UInt idx,
55 if ( idx < (FT_UInt)ttface->num_names )
57 TT_NameEntryRec* entry = ttface->name_table.names + idx;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi.h120 static INLINE void svga_generate_vdecl_semantics( unsigned idx, argument
124 if (idx == 0) {
130 *usage_index = idx - 1;
/external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/
H A Degl.c200 int idx, i; local
207 for (idx = 0; driver_map[idx].driver; idx++) {
208 if (vendor_id != driver_map[idx].vendor_id)
212 if (driver_map[idx].num_chips_ids == -1)
215 for (i = 0; i < driver_map[idx].num_chips_ids; i++) {
216 if (driver_map[idx].chip_ids[i] == chip_id)
220 if (i < driver_map[idx].num_chips_ids)
224 _eglLog((driver_map[idx]
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicToQuadratics.cpp99 for (int idx = 0; idx <= tsCount; ++idx) {
100 double t1 = idx < tsCount ? ts[idx] : 1;
208 for (int idx = 0; idx < last; ++idx) {
209 sub_divide(cubic, inflectT[idx], inflectT[idx
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DTypeIdItem.java61 int idx = file.getStringIds().indexOf(descriptor);
65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
68 out.writeInt(idx);

Completed in 3534 milliseconds

<<11121314151617181920>>