HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 251 - 275 of 3229) sorted by null

<<11121314151617181920>>

  /external/skia/src/utils/
SkMeshUtils.cpp 51 uint16_t* idx = fIndices; local
55 *idx++ = index;
56 *idx++ = index + rows + 1;
57 *idx++ = index + 1;
59 *idx++ = index + 1;
60 *idx++ = index + rows + 1;
61 *idx++ = index + rows + 2;
91 SkMeshIndices idx; local
93 if (idx.init(bitmap.width(), bitmap.height(), rows, cols)) {
99 rows * cols, verts, idx.tex(), colors, NULL
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_bitvector.h 34 bool setBit(uptr idx) {
36 bits_ |= mask(idx);
41 bool clearBit(uptr idx) {
43 bits_ &= ~mask(idx);
47 bool getBit(uptr idx) const { return (bits_ & mask(idx)) != 0; }
51 uptr idx = LeastSignificantSetBitIndex(bits_); local
52 clearBit(idx);
53 return idx;
85 // uptr idx = it.next()
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/test/
rdbx_driver.c 142 * rdbx_check_add(rdbx, idx) checks a known-to-be-good idx against
150 rdbx_check_add(rdbx_t *rdbx, uint32_t idx) {
154 delta = index_guess(&rdbx->index, &est, idx);
157 printf("replay_check failed at index %u\n", idx);
162 * in practice, we'd authenticate the packet containing idx, using
167 printf("rdbx_add_index failed at index %u\n", idx);
175 * rdbx_check_expect_failure(rdbx_t *rdbx, uint32_t idx)
177 * checks that a sequence number idx is in the replay database
182 rdbx_check_expect_failure(rdbx_t *rdbx, uint32_t idx) {
226 uint32_t idx, ircvd; local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
Core.pm 39 foreach my $idx (sort {$a <=> $b} keys %trace_flags) {
40 if (!$value && !$idx) {
45 if ($idx && ($value & $idx) == $idx) {
49 $string .= "$trace_flags{$idx}";
51 $value &= ~$idx;
69 foreach my $idx (sort {$a <=> $b} keys %{$flag_fields{$event_name}{$field_name}{"values"}}) {
70 if (!$value && !$idx) {
71 $string .= "$flag_fields{$event_name}{$field_name}{'values'}{$idx}";
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
FramebufferData.cpp 54 int idx = attachmentPointIndex(attachment); local
56 if (m_attachPoints[idx].target != target ||
57 m_attachPoints[idx].name != name ||
58 m_attachPoints[idx].obj.Ptr() != obj.Ptr() ||
59 m_attachPoints[idx].owned != takeOwnership) {
61 detachObject(idx);
63 m_attachPoints[idx].target = target;
64 m_attachPoints[idx].name = name;
65 m_attachPoints[idx].obj = obj;
66 m_attachPoints[idx].owned = takeOwnership
81 int idx = attachmentPointIndex(attachment); local
    [all...]
  /external/lldb/source/Interpreter/
OptionValueArray.cpp 98 int32_t idx = Args::StringToSInt32(index_str.c_str(), INT32_MAX, 0, NULL); local
99 if (idx != INT32_MAX)
103 if (idx < 0)
106 new_idx = array_count - idx;
111 new_idx = idx;
127 error.SetErrorStringWithFormat("index %i is not valid for an empty array", idx);
128 else if (idx > 0)
129 error.SetErrorStringWithFormat("index %i out of range, valid values are 0 through %" PRIu64, idx, (uint64_t)(array_count - 1));
131 error.SetErrorStringWithFormat("negative index %i out of range, valid values are -1 through -%" PRIu64, idx, (uint64_t)array_count);
178 uint32_t idx = Args::StringToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX) local
225 const int idx = Args::StringToSInt32(args.GetArgumentAtIndex(i), INT32_MAX); local
274 uint32_t idx = Args::StringToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX); local
    [all...]
  /external/chromium_org/net/tools/flip_server/
ring_buffer.h 96 int set_read_idx(int idx) { return read_idx_ = idx; }
97 int set_write_idx(int idx) { return write_idx_ = idx; }
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
encode_lpc_swb.h 103 * -idx : pointer to quantization indices.
107 int* idx,
173 * -idx : pointer to quantiztion indices.
181 const int* idx,
227 * -idx : quantization indices
232 int* idx);
241 * -idx : pointer to quantization indices.
247 const int* idx,
  /external/compiler-rt/lib/tsan/rtl/
tsan_dense_alloc.h 67 void Free(Cache *c, IndexT idx) {
70 c->cache[c->pos++] = idx;
73 T *Map(IndexT idx) {
74 DCHECK_NE(idx, 0);
75 DCHECK_LE(idx, kL1Size * kL2Size);
76 return &map_[idx / kL2Size][idx % kL2Size];
82 IndexT idx = c->cache[--c->pos]; local
83 *(IndexT*)Map(idx) = freelist_;
84 freelist_ = idx;
118 IndexT idx = freelist_; local
127 IndexT idx = c->cache[--c->pos]; local
    [all...]
  /external/lldb/scripts/Python/interface/
SBFileSpecList.i 37 FindFileIndex (uint32_t idx, const SBFileSpec &sb_file, bool full);
40 GetFileSpecAtIndex (uint32_t idx) const;
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDeclContext.h 87 operator[] (uint32_t idx)
89 // "idx" must be valid
90 return m_entries[idx];
94 operator[] (uint32_t idx) const
96 // "idx" must be valid
97 return m_entries[idx];
  /external/lldb/tools/debugserver/source/
TTYState.h 51 bool GetState(uint32_t idx, int fd, bool saveProcessGroup);
52 bool SetState(uint32_t idx) const;
54 bool ValidStateIndex(uint32_t idx) const { return idx < NumStates(); }
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
ttpost.h 34 FT_UInt idx,
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
encode_lpc_swb.h 104 * -idx : pointer to quantization indices.
108 int* idx,
174 * -idx : pointer to quantiztion indices.
182 const int* idx,
228 * -idx : quantization indices
233 int* idx);
242 * -idx : pointer to quantization indices.
248 const int* idx,
  /system/security/keystore-engine/
keyhandle.cpp 31 int keyhandle_new(void*, void*, CRYPTO_EX_DATA* ad, int idx, long, void*) {
32 return CRYPTO_set_ex_data(ad, idx, NULL);
48 int keyhandle_dup(CRYPTO_EX_DATA* to, CRYPTO_EX_DATA*, void *ptrRef, int idx, long, void *) {
57 (void) CRYPTO_set_ex_data(to, idx, keyhandle_copy);
  /external/lldb/source/Core/
ValueObjectList.cpp 77 ValueObjectList::GetValueObjectAtIndex (size_t idx)
80 if (idx < m_value_objects.size())
81 valobj_sp = m_value_objects[idx];
86 ValueObjectList::RemoveValueObjectAtIndex (size_t idx)
89 if (idx < m_value_objects.size())
91 valobj_sp = m_value_objects[idx];
92 m_value_objects.erase (m_value_objects.begin() + idx);
98 ValueObjectList::SetValueObjectAtIndex (size_t idx, const ValueObjectSP &valobj_sp)
100 if (idx >= m_value_objects.size())
101 m_value_objects.resize (idx + 1)
    [all...]
AddressResolver.cpp 64 AddressResolver::GetAddressRangeAtIndex (size_t idx)
66 return m_address_ranges[idx];
  /frameworks/rs/driver/
rsdVertexArray.cpp 66 void RsdVertexArray::logAttrib(uint32_t idx, uint32_t slot) const {
67 if (idx == 0) {
71 idx, slot,
72 mAttribs[idx].name.string(),
73 mAttribs[idx].buffer,
74 mAttribs[idx].ptr,
75 mAttribs[idx].size,
76 mAttribs[idx].type,
77 mAttribs[idx].stride,
78 mAttribs[idx].normalized
    [all...]
  /bootable/recovery/minzip/
Hash.h 150 int idx; member in struct:HashIter
153 int i = pIter->idx +1;
160 pIter->idx = i;
164 pIter->idx = -1;
168 return (pIter->idx >= pIter->pHashTable->tableSize);
171 assert(pIter->idx >= 0 && pIter->idx < pIter->pHashTable->tableSize);
172 return pIter->pHashTable->pEntries[pIter->idx].data;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/server/
radeon_macros.h 88 #define OUTPAL_START(idx) \
90 OUTREG8(RADEON_PALETTE_INDEX, (idx)); \
103 #define OUTPAL(idx, r, g, b) \
105 OUTPAL_START((idx)); \
109 #define INPAL_START(idx) \
111 OUTREG(RADEON_PALETTE_INDEX, (idx) << 16); \
116 #define PAL_SELECT(idx) \
118 if (!idx) { \
  /external/mesa3d/src/mesa/drivers/dri/radeon/server/
radeon_macros.h 88 #define OUTPAL_START(idx) \
90 OUTREG8(RADEON_PALETTE_INDEX, (idx)); \
103 #define OUTPAL(idx, r, g, b) \
105 OUTPAL_START((idx)); \
109 #define INPAL_START(idx) \
111 OUTREG(RADEON_PALETTE_INDEX, (idx) << 16); \
116 #define PAL_SELECT(idx) \
118 if (!idx) { \
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttgload.h 39 FT_UInt idx,
45 FT_UInt idx,
  /frameworks/base/tools/aapt/
AaptUtil.h 45 ssize_t idx = keyedVector.indexOfKey(key); local
46 if (idx < 0) {
47 idx = keyedVector.add(key, android::Vector<VALUE>());
49 keyedVector.editValueAt(idx).add(value);
55 ssize_t idx = keyedVector.indexOfKey(key); local
56 if (idx < 0) {
57 idx = keyedVector.add(key, android::SortedVector<VALUE>());
59 keyedVector.editValueAt(idx).add(value);
  /hardware/intel/img/libdrm/tests/
getclient.c 45 client.idx = 0;
54 client.idx = 0x7fffffff;
  /external/chromium_org/third_party/freetype/src/cff/
cffload.c 202 cff_index_read_offset( CFF_Index idx,
206 FT_Stream stream = idx->stream;
211 if ( !FT_STREAM_READ( tmp, idx->off_size ) )
216 for ( nn = 0; nn < idx->off_size; nn++ )
226 cff_index_init( CFF_Index idx,
235 FT_MEM_ZERO( idx, sizeof ( *idx ) );
237 idx->stream = stream;
238 idx->start = FT_STREAM_POS();
257 idx->count = count
586 CFF_Index idx = &font->name_index; local
1546 FT_UInt idx; local
1655 FT_UInt idx; local
    [all...]

Completed in 2911 milliseconds

<<11121314151617181920>>