HomeSort by relevance Sort by last modified time
    Searched defs:idx (Results 51 - 75 of 1589) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/runtime/
indirect_reference_table-inl.h 42 int idx = ExtractIndex(iref); local
43 if (UNLIKELY(idx >= topIndex)) {
45 << iref << " (index " << idx << " in a table of size " << topIndex << ")";
49 if (UNLIKELY(table_[idx].IsNull())) {
54 if (UNLIKELY(!CheckEntry("use", iref, idx))) {
60 // Make sure that the entry at "idx" is correctly paired with "iref".
61 inline bool IndirectReferenceTable::CheckEntry(const char* what, IndirectRef iref, int idx) const {
62 IndirectRef checkRef = ToIndirectRef(idx);
78 uint32_t idx = ExtractIndex(iref); local
79 mirror::Object* obj = table_[idx].Read<kWithoutReadBarrier>()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
TypeIdItem.java 63 int idx = file.getStringIds().indexOf(descriptor); local
67 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
70 out.writeInt(idx);
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlockList.java 55 int idx = indexOfLabel(label); local
57 if (idx < 0) {
62 return get(idx);
  /dalvik/dx/src/com/android/dx/dex/file/
TypeIdItem.java 61 int idx = file.getStringIds().indexOf(descriptor); local
65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
68 out.writeInt(idx);
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_api.c 61 UINT8 idx; local
64 for (idx = 0; idx < BTA_AG_NUM_SCB; idx++)
66 if (bta_ag_cb.scb[idx].in_use)
  /external/bluetooth/bluedroid/bta/hf_client/
bta_hf_client_api.c 62 UINT8 idx; local
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
framing.c 114 OI_UINT idx; local
115 idx = oldcrc^next;
116 crc = crc8_wide[idx >> 1];
117 if (idx%2) {
129 OI_UINT idx; local
130 idx = (oldcrc ^ next) >> 4;
131 crc = crc8_wide[idx>>1];
132 if (idx%2) {
  /external/ceres-solver/internal/ceres/
incomplete_lq_factorization_test.cc 88 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], idx - matrix.rows()[1])
    [all...]
  /external/chromium_org/rlz/lib/
string_utils.cc 42 int idx = 0; local
44 while (text[idx] == '\t' || text[idx] == ' ')
45 idx++;
47 if ((text[idx] == '0') &&
48 (text[idx + 1] == 'X' || text[idx + 1] == 'x'))
49 idx +=2; // String is of the form 0x...
53 for (; text[idx] != '\0'; idx++)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_decompose_tmp.h 51 unsigned idx[6], i; local
66 idx[0] = GET_ELT(i);
67 POINT(idx[0]);
74 idx[0] = GET_ELT(i);
75 idx[1] = GET_ELT(i + 1);
76 LINE(flags, idx[0], idx[1]);
84 idx[1] = GET_ELT(0);
85 idx[2] = idx[1]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
uniform_initializer_utils.cpp 51 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/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi_entrypoint.c 202 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 + 2]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_parameter_layout.c 166 const int idx = inst->SrcReg[i].Base.Index; local
182 p = & state->prog->Parameters->Parameters[idx];
187 state->prog->Parameters->ParameterValues[idx];
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs12/
p12_crt.c 68 int idx; local
70 idx = EVP_PKEY_get_attr_by_NID(pkey, nid, -1);
71 if (idx < 0)
73 attr = EVP_PKEY_get_attr(pkey, idx);
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
pcy_node.c 81 int idx; local
86 idx = sk_X509_POLICY_NODE_find(nodes, &l);
87 if (idx == -1)
90 return sk_X509_POLICY_NODE_value(nodes, idx);
  /external/chromium_org/third_party/opus/src/silk/
CNG.c 45 opus_int i, idx, exc_mask; local
55 idx = (opus_int)( silk_RSHIFT( seed, 24 ) & exc_mask );
56 silk_assert( idx >= 0 );
57 silk_assert( idx <= CNG_BUF_MASK_MAX );
58 residual_Q10[ i ] = (opus_int16)silk_SAT16( silk_SMULWW( exc_buf_Q14[ idx ], Gain_Q16 >> 4 ) );
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticBezierClip.cpp 60 int idx = 0; local
62 int next = idx + 1;
66 x_at(distance2y[idx], distance2y[next], top, bottom, flags, minT, maxT);
67 idx = next;
68 } while (idx);
  /external/chromium_org/third_party/skia/include/gpu/
GrEffectUnitTest.h 55 uint32_t idx = random->nextRangeU(0, GetFactories()->count() - 1); local
56 GrEffectTestFactory* factory = (*GetFactories())[idx];
  /external/chromium_org/third_party/sqlite/src/src/
vdbetrace.c 70 int idx = 0; /* Index of a host parameter */ local
101 sqlite3GetInt32(&zRawSql[1], &idx);
103 idx = nextIndex;
110 idx = sqlite3VdbeParameterIndex(p, zRawSql, nToken);
111 assert( idx>0 );
114 nextIndex = idx + 1;
115 assert( idx>0 && idx<=p->nVar );
116 pVar = &p->aVar[idx-1];
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stack_trace_table.cc 82 const int idx = h % kHashTableSize; local
84 Bucket* b = table_[idx];
103 b->next = table_[idx];
104 table_[idx] = b;
125 int idx = 0; local
129 out[idx++] = reinterpret_cast<void*>(static_cast<uintptr_t>(b->count));
130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
133 out[idx++] = b->trace.stack[d];
138 out[idx++] = NULL
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stack_trace_table.cc 82 const int idx = h % kHashTableSize; local
84 Bucket* b = table_[idx];
103 b->next = table_[idx];
104 table_[idx] = b;
125 int idx = 0; local
129 out[idx++] = reinterpret_cast<void*>(static_cast<uintptr_t>(b->count));
130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
133 out[idx++] = b->trace.stack[d];
138 out[idx++] = static_cast<uintptr_t>(0)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libignore.cc 85 const uptr idx = atomic_load(&loaded_count_, memory_order_relaxed); local
86 code_ranges_[idx].begin = b;
87 code_ranges_[idx].end = e;
88 atomic_store(&loaded_count_, idx + 1, memory_order_release);
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_dense_alloc_test.cc 37 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/dexmaker/src/dx/java/com/android/dx/dex/file/
MemberIdsSection.java 42 int idx = 0; local
51 ((MemberIdItem) i).setIndex(idx);
52 idx++;
TypeIdItem.java 61 int idx = file.getStringIds().indexOf(descriptor); local
65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
68 out.writeInt(idx);

Completed in 1237 milliseconds

1 23 4 5 6 7 8 91011>>