HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 401 - 425 of 4325) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4639204/lib64/clang/6.0.1/include/
ammintrin.h 33 /// integer vector operand at the index \a idx and of the length \a len.
38 /// __m128i _mm_extracti_si64(__m128i x, const int len, const int idx);
48 /// \param idx
56 #define _mm_extracti_si64(x, len, idx) \
58 (char)(len), (char)(idx)))
87 /// the index \a idx and of the length \a len.
93 /// const int idx);
100 /// are defined by the length \a len and by the index \a idx specifying the
108 /// \param idx
118 #define _mm_inserti_si64(x, y, len, idx) \
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/
WorkList.h 36 const CFGBlock *B, unsigned idx)
40 blockIdx(idx) {}
69 void enqueue(ExplodedNode *N, const CFGBlock *B, unsigned idx) {
70 enqueue(WorkListUnit(N, CurrentCounter, B, idx));
  /prebuilts/clang/host/linux-x86/clang-4691093/lib64/clang/6.0.2/include/
ammintrin.h 33 /// integer vector operand at the index \a idx and of the length \a len.
38 /// __m128i _mm_extracti_si64(__m128i x, const int len, const int idx);
48 /// \param idx
56 #define _mm_extracti_si64(x, len, idx) \
58 (char)(len), (char)(idx)))
87 /// the index \a idx and of the length \a len.
93 /// const int idx);
100 /// are defined by the length \a len and by the index \a idx specifying the
108 /// \param idx
118 #define _mm_inserti_si64(x, y, len, idx) \
    [all...]
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
ammintrin.h 33 #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)))
  /prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
ammintrin.h 33 #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)))
  /prebuilts/sdk/renderscript/clang-include/
ammintrin.h 33 /// integer vector operand at the index idx and of the length len.
38 /// __m128i _mm_extracti_si64(__m128i x, const int len, const int idx);
48 /// \param idx
56 #define _mm_extracti_si64(x, len, idx) \
58 (char)(len), (char)(idx)))
86 /// idx and of the length len.
92 /// const int idx);
99 /// are defined by the length len and by the index idx specifying the least
107 /// \param idx
118 #define _mm_inserti_si64(x, y, len, idx) \
    [all...]
  /system/sepolicy/tools/sepolicy-analyze/
utils.h 12 void display_allow(policydb_t *policydb, avtab_key_t *key, int idx, uint32_t perms);
  /test/framework/harnesses/host_controller/acloud/
acloud_config.py 80 idx = line.find(separator)
82 if idx < 1 or not line.endswith('"'):
88 key = line[:idx]
89 val = line[len(separator) + idx : -1]
  /external/dtc/tests/
stringlist.c 91 int idx)
101 if (err != idx)
103 string, property, path, err, idx);
107 const char *property, int idx,
117 result = fdt_stringlist_get(fdt, offset, property, idx, &len);
120 idx, property, path, len);
124 idx, property, path, result, string);
  /external/f2fs-tools/fsck/
defrag.c 66 u64 idx, offset; local
71 for (idx = from; idx < from + len; idx++) {
74 se = get_seg_entry(sbi, GET_SEGNO(sbi, idx));
75 offset = OFFSET_IN_SEG(sbi, idx);
85 if (migrate_block(sbi, idx, target)) {
  /external/fio/tools/hist/
fiologparser_hist.py 36 idx = np.argsort(vs)
37 vs, ws = vs[idx], ws[idx] # weights and values sorted by value
135 def _plat_idx_to_val(idx, edge=0.5, FIO_IO_U_PLAT_BITS=6, FIO_IO_U_PLAT_VAL=64):
139 idx : the value of the index into the histogram bins
148 if (idx < (FIO_IO_U_PLAT_VAL << 1)):
149 return idx
152 error_bits = (idx >> FIO_IO_U_PLAT_BITS) - 1
156 k = idx % FIO_IO_U_PLAT_VAL
161 def plat_idx_to_val_coarse(idx, coarseness, edge=0.5)
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_draw.h 115 struct pipe_index_buffer *idx = &batch->ctx->indexbuf; local
117 assert(!idx->user_buffer);
119 idx_buffer = idx->buffer;
120 idx_type = fd4_size2indextype(idx->index_size);
121 idx_size = idx->index_size * info->count;
122 idx_offset = idx->offset + (info->start * idx->index_size);
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_draw.h 126 struct pipe_index_buffer *idx = &batch->ctx->indexbuf; local
128 assert(!idx->user_buffer);
130 idx_buffer = idx->buffer;
131 idx_type = size2indextype(idx->index_size);
132 idx_size = idx->index_size * info->count;
133 idx_offset = idx->offset + (info->start * idx->index_size);
freedreno_query_hw.c 43 /* maps query_type to sample provider idx: */
69 int idx = pidx(query_type); local
71 assume(idx >= 0); /* query never would have been created otherwise */
73 if (!batch->sample_cache[idx]) {
75 ctx->sample_providers[idx]->get_sample(batch, ring);
76 fd_hw_sample_reference(ctx, &batch->sample_cache[idx], new_samp);
81 fd_hw_sample_reference(ctx, &samp, batch->sample_cache[idx]);
106 int idx = pidx(hq->provider->query_type); local
108 assert(idx >= 0); /* query never would have been created otherwise */
110 batch->active_providers |= (1 << idx);
122 int idx = pidx(hq->provider->query_type); local
316 int idx = pidx(query_type); local
476 int idx = pidx(provider->query_type); local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_constants.h 120 #define GET_SWZ(swz, idx) (((swz) >> ((idx)*3)) & 0x7)
121 #define GET_BIT(msk, idx) (((msk) >> (idx)) & 0x1)
122 #define SET_SWZ(swz, idx, newv) \
124 (swz) = ((swz) & ~(7 << ((idx)*3))) | ((newv) << ((idx)*3)); \
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
pvdec_api.cpp 82 int idx; local
88 for (idx = 0; idx < nLayers; idx++)
90 decCtrl->volbuf[idx] = volbuf[idx];
91 decCtrl->volbuf_size[idx] = volbuf_size[idx];
165 for (idx = 0; idx < nLayers; idx++
583 int idx; local
609 int idx; local
829 int idx; local
936 int idx = -1; local
1096 int idx; local
1305 int idx; local
    [all...]
  /external/freetype/src/type1/
t1driver.c 187 FT_UInt idx,
207 if ( idx < sizeof ( type1->font_matrix ) /
216 switch ( idx )
237 if ( idx < sizeof ( type1->font_bbox ) /
246 switch ( idx )
291 if ( idx < (FT_UInt)type1->num_glyphs )
293 retval = ft_strlen( type1->glyph_names[idx] ) + 1;
296 ft_memcpy( value, (void *)( type1->glyph_names[idx] ), retval );
303 if ( idx < (FT_UInt)type1->num_glyphs )
305 retval = type1->charstrings_len[idx] + 1
    [all...]
  /external/pdfium/third_party/agg23/
agg_path_storage.h 93 unsigned vertex(unsigned idx, float* x, float* y) const
95 unsigned nb = idx >> block_shift;
96 const float* pv = m_coord_blocks[nb] + ((idx & block_mask) << 1);
99 return m_cmd_blocks[nb][idx & block_mask];
101 unsigned command(unsigned idx) const
103 return m_cmd_blocks[idx >> block_shift][idx & block_mask];
105 unsigned getflag(unsigned idx) const
107 return m_cmd_blocks[idx >> block_shift][idx & block_mask] & path_flags_jr
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/
pad.cc 64 for (int idx = 0; idx < op_context->dims; ++idx) {
71 output_size->data[idx] =
72 (input_size->data[idx] + before_padding + after_padding);
117 for (int idx = op_context.dims - 1; idx >= 0; --idx) {
118 before_padding.push_back(paddings_data[idx * 2]);
119 after_padding.push_back(paddings_data[idx * 2 + 1])
    [all...]
transpose.cc 53 for (int idx = 0; idx < dims; ++idx) {
54 TF_LITE_ENSURE_MSG(context, (perm_data[idx] >= 0 && perm_data[idx] < dims),
61 for (int idx = 0; idx < dims; ++idx) {
62 output_size->data[idx] = input_size->data[perm_data[idx]];
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicFrameProcessor.java 210 int idx = mOldestIdx; local
211 mTotalTranslationX -= mDeltaX[idx];
212 mTotalTranslationY -= mDeltaY[idx];
213 mTotalDeltaTime -= mDeltaTime[idx];
214 mDeltaX[idx] = Math.abs(translationCurrX - mTranslationLastX);
215 mDeltaY[idx] = Math.abs(translationCurrY - mTranslationLastY);
216 mDeltaTime[idx] = (now - mLastProcessedFrameTimestamp) / 1000.0f;
217 mTotalTranslationX += mDeltaX[idx];
218 mTotalTranslationY += mDeltaY[idx];
219 mTotalDeltaTime += mDeltaTime[idx];
    [all...]
  /external/freetype/src/cff/
cffload.c 211 cff_index_read_offset( CFF_Index idx,
215 FT_Stream stream = idx->stream;
220 if ( !FT_STREAM_READ( tmp, idx->off_size ) )
225 for ( nn = 0; nn < idx->off_size; nn++ )
235 cff_index_init( CFF_Index idx,
245 FT_ZERO( idx );
247 idx->stream = stream;
248 idx->start = FT_STREAM_POS();
254 idx->hdr_size = 5;
260 idx->hdr_size = 3
614 CFF_Index idx = &font->name_index; local
1438 FT_UInt idx; local
2373 FT_UInt idx; local
2502 FT_UInt idx; local
    [all...]
  /device/google/cuttlefish_common/guest/hals/hwcomposer/legacy/
base_composer.cpp 98 for (size_t idx = 0; idx < num_layers; idx++) {
99 if (IS_TARGET_FRAMEBUFFER(layers[idx].compositionType)) {
100 return PostFrameBufferTarget(layers[idx].handle);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRHashMap.h 83 - (ANTLRMapElement *)getptrBufferEntry:(int)idx;
84 - (void)setptrBuffer:(ANTLRMapElement *)np Index:(int)idx;
92 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx;
93 - (id) objectAtIndex:(NSInteger)idx;
94 - (void) setObject:(id)aRule atIndex:(NSInteger)idx;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRHashMap.h 83 - (ANTLRMapElement *)getptrBufferEntry:(int)idx;
84 - (void)setptrBuffer:(ANTLRMapElement *)np Index:(int)idx;
92 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx;
93 - (id) objectAtIndex:(NSInteger)idx;
94 - (void) setObject:(id)aRule atIndex:(NSInteger)idx;

Completed in 2581 milliseconds

<<11121314151617181920>>