HomeSort by relevance Sort by last modified time
    Searched refs:start_idx (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/freetype/src/cff/
cf2stack.c 206 CF2_Int start_idx, idx, i; local
251 start_idx = -1;
258 if ( start_idx == idx )
260 start_idx++;
261 idx = start_idx;
  /external/libopus/silk/
decode_core.c 45 opus_int i, k, lag = 0, start_idx, sLTP_buf_idx, NLSF_interpolation_flag, signalType; local
142 start_idx = psDec->ltp_mem_length - lag - psDec->LPC_order - LTP_ORDER / 2;
143 silk_assert( start_idx > 0 );
149 silk_LPC_analysis_filter( &sLTP[ start_idx ], &psDec->outBuf[ start_idx + k * psDec->subfr_length ],
150 A_Q12, psDec->ltp_mem_length - start_idx, psDec->LPC_order );
  /external/mesa3d/src/gallium/state_trackers/vega/
util_array.h 99 int start_idx,
103 memcpy(adata + (start_idx * array->datatype_size), data,
  /system/core/fs_mgr/
fs_mgr.c 298 * the mountpoint of the one given by fstab->recs[start_idx].
302 * succeeded. In case of failure, it will be the start_idx.
307 static int mount_with_alternatives(struct fstab *fstab, int start_idx, int *end_idx, int *attempted_idx)
313 if (!end_idx || !attempted_idx || start_idx >= fstab->num_entries) {
315 if (end_idx) *end_idx = start_idx;
316 if (attempted_idx) *end_idx = start_idx;
321 for (i = start_idx;
323 i < fstab->num_entries && !strcmp(fstab->recs[start_idx].mount_point, fstab->recs[i].mount_point);
343 if (i != start_idx) {
346 fstab->recs[start_idx].fs_type)
    [all...]
  /art/runtime/base/
timing_logger.cc 156 size_t TimingLogger::FindTimingIndex(const char* name, size_t start_idx) const {
157 DCHECK_LT(start_idx, timings_.size());
158 for (size_t i = start_idx; i < timings_.size(); ++i) {
  /development/ndk/platforms/android-3/include/linux/
bio.h 148 #define __bio_for_each_segment(bvl, bio, i, start_idx) for (bvl = bio_iovec_idx((bio), (start_idx)), i = (start_idx); i < (bio)->bi_vcnt; bvl++, i++)