HomeSort by relevance Sort by last modified time
    Searched defs:idx (Results 126 - 150 of 2369) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/native/vulkan/libvulkan/
stubhal.cpp 86 ssize_t idx = local
88 ALOG_ASSERT(idx >= 0 && static_cast<size_t>(idx) < g_instance_used.size(),
90 g_instance_used[static_cast<size_t>(idx)] = false;
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
hndrte_cons.h 32 uint idx; member in struct:__anon46945
  /hardware/interfaces/audio/effect/all-versions/default/include/effect/all-versions/default/
AudioBufferManager.impl.h 30 ssize_t idx = mBuffers.indexOfKey(buffer.id); local
31 if (idx >= 0) {
32 *wrapper = mBuffers[idx].promote();
37 mBuffers.removeItemsAt(idx);
49 ssize_t idx = mBuffers.indexOfKey(id); local
50 if (idx >= 0) mBuffers.removeItemsAt(idx);
  /system/bt/embdrv/sbc/decoder/srce/
framing.c 158 OI_UINT idx; local
159 idx = oldcrc ^ next;
160 crc = crc8_wide[idx >> 1];
161 if (idx % 2) {
172 OI_UINT idx; local
173 idx = (oldcrc ^ next) >> 4;
174 crc = crc8_wide[idx >> 1];
175 if (idx % 2) {
  /system/bt/stack/rfcomm/
rfc_l2cap_if.cc 166 uint8_t idx = p_mcb->port_inx[i]; local
167 if (idx != 0) {
169 p_mcb->port_inx[i + 1] = idx;
170 rfc_cb.port.port[idx - 1].dlci += 1;
171 RFCOMM_TRACE_DEBUG("RFCOMM MX, port_handle=%d, DLCI[%d->%d]", idx, i,
172 rfc_cb.port.port[idx - 1].dlci);
  /system/core/libpixelflinger/
picker.cpp 133 int idx = 0; local
155 new_needs.t[idx++] = t;
  /tools/tradefederation/core/src/com/android/tradefed/util/
SimplePerfStatResultParser.java 96 int idx = output.indexOf(SIMPLEPERF_METRIC_HEAD); local
97 if (idx == -1) {
101 result.setCommandRawOutput(output.substring(0, idx));
102 String simpleperfOutput = output.substring(idx + SIMPLEPERF_METRIC_HEAD.length() + 1);
  /art/runtime/gc/allocator/
rosalloc-inl.h 64 size_t idx = SizeToIndexAndBracketSize(size, &bracket_size); local
65 DCHECK_LT(idx, kNumThreadLocalSizeBrackets);
66 Run* thread_local_run = reinterpret_cast<Run*>(self->GetRosAllocRun(idx));
69 MutexLock mu(self, *size_bracket_locks_[idx]);
70 CHECK(non_full_runs_[idx].find(thread_local_run) == non_full_runs_[idx].end());
71 CHECK(full_runs_[idx].find(thread_local_run) == full_runs_[idx].end());
85 size_t idx = SizeToIndexAndBracketSize(size, &bracket_size); local
86 Run* thread_local_run = reinterpret_cast<Run*>(self->GetRosAllocRun(idx));
107 size_t idx = SizeToIndexAndBracketSize(size, &bracket_size); local
114 const uint8_t idx = size_bracket_idx_; local
    [all...]
  /device/google/contexthub/firmware/os/cpu/cortexm4/
atomicBitset.c 46 uint32_t idx = num / 32, mask = 1UL << (num & 31), status, tmp; local
47 uint32_t *wordPtr = set->words + idx;
66 uint32_t idx = num / 32, mask = 1UL << (num & 31), status, tmp; local
67 uint32_t *wordPtr = set->words + idx;
86 uint32_t idx, numWords = ATOMIC_BITSET_NUM_WORDS(set->numBits); local
90 for (idx = 0; idx < numWords; idx++, wordPtr++) {
111 return (idx * 32) + bit;
119 uint32_t idx, numWords = ATOMIC_BITSET_NUM_WORDS(atomicallyAccessedSet->numBits) local
132 uint32_t idx, numWords = ATOMIC_BITSET_NUM_WORDS(set->numBits); local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/common/
runtime_svc.c 40 unsigned int idx; local
44 idx = get_unique_oen_from_smc_fid(smc_fid);
45 assert(idx < MAX_RT_SVCS);
47 index = rt_svc_descs_indices[idx];
  /device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/
memory.h 60 xen_ulong_t idx; member in struct:xen_add_to_physmap
  /device/linaro/hikey/l-loader/
gen_loader.py 37 idx = 0 variable in class:generator
112 if self.idx == 0:
120 if self.idx == 0:
131 if (self.idx == 0) and (self.stage == 1):
152 if (self.idx == 0) and (self.stage == 1):
163 byte = struct.pack('8s8siii', 'ENTRYHDR', self.s1_entry_name[self.idx], lba, blocks, bootp)
165 byte = struct.pack('8s8siii', 'ENTRYHDR', self.s2_entry_name[self.idx], lba, blocks, bootp)
169 self.idx += 1
201 print 'self.idx: ', self.idx
    [all...]
  /external/aac/libAACdec/src/
usacdec_ace_d4t64.cpp 228 LONG mask, idx; local
234 idx = index & mask;
239 D_ACELP_decode_2p_2N1(idx, N - 1, j, pos);
241 idx = (index >> (2 * N)) & mask;
242 D_ACELP_decode_1p_N1(idx, N, offset, pos + 2);
263 LONG mask, idx; local
268 idx = index & mask;
273 D_ACELP_decode_2p_2N1(idx, N - 1, j, pos);
275 idx = (index >> (2 * N)) & mask;
276 D_ACELP_decode_2p_2N1(idx, N, offset, pos + 2)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBufferedTreeNodeStream.h 46 NSInteger idx; variable
135 - (void) setIndex:(NSInteger) idx;
138 - (void) seek:(NSInteger) idx;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBufferedTreeNodeStream.h 46 NSInteger idx; variable
135 - (void) setIndex:(NSInteger) idx;
138 - (void) seek:(NSInteger) idx;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTreeNodeStream.h 46 NSInteger idx; variable
135 - (void) setIndex:(NSInteger) idx;
138 - (void) seek:(NSInteger) idx;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTreeNodeStream.h 47 NSInteger idx; variable
138 - (void) seek:(NSInteger) idx;
  /external/blktrace/btt/
unplug_hist.c 53 int idx, n_unplugs = be64_to_cpu(*val); local
56 idx = (n_unplugs / BKT_WIDTH);
57 if (idx > EXCESS_BKT)
58 idx = EXCESS_BKT;
60 hbp->hist[idx]++;
  /external/boringssl/src/crypto/x509v3/
pcy_cache.c 261 size_t idx; local
265 if (!sk_X509_POLICY_DATA_find(cache->data, &idx, &tmp))
267 return sk_X509_POLICY_DATA_value(cache->data, idx);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_bitvector_test.cc 38 uptr idx = it.next(); local
41 EXPECT_LT(last_idx, idx);
42 last_idx = idx;
43 EXPECT_TRUE(s.count(idx));
49 uptr idx = t.getAndClearFirstOne(); local
51 EXPECT_LT(last_idx, idx);
52 last_idx = idx;
53 EXPECT_TRUE(t_s.erase(idx));
63 uptr idx = t.getAndClearFirstOne(); local
64 fprintf(stderr, "%zd ", idx);
    [all...]
  /external/compiler-rt/test/asan/TestCases/Posix/
halt_on_error-signals.c 32 volatile int idx = 0; local
33 bad[idx] = 0;
  /external/curl/docs/examples/
multi-app.c 150 int idx, found = 0; local
153 for(idx = 0; idx<HANDLECOUNT; idx++) {
154 found = (msg->easy_handle == handles[idx]);
159 switch(idx) {
  /external/e2fsprogs/lib/ss/
help.c 45 register int idx; local
80 for (fd = -1, idx = 0; info->info_dirs[idx] != (char *)NULL; idx++) {
81 buffer = malloc(strlen (info->info_dirs[idx]) + 1 +
88 (void) strcpy(buffer, info->info_dirs[idx]);
  /external/elfutils/lib/
dynamicsizehash.c 51 size_t idx = 1 + (hval < htab->size ? hval : hval % htab->size); local
53 if (htab->table[idx].hashval != 0)
57 if (htab->table[idx].hashval == hval
58 && COMPARE (htab->table[idx].data, val) == 0)
59 return idx;
66 if (idx <= hash)
67 idx = htab->size + idx - hash;
69 idx -= hash;
72 if (htab->table[idx].hashval == hva
212 size_t idx; local
236 size_t idx; local
256 size_t idx; local
    [all...]
fixedsizehash.h 136 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].hval == hva
    [all...]

Completed in 1235 milliseconds

1 2 3 4 56 7 8 91011>>