HomeSort by relevance Sort by last modified time
    Searched defs:start_idx (Results 1 - 19 of 19) sorted by null

  /device/google/cuttlefish_common/common/vsoc/shm/
circqueue.h 54 uint32_t start_idx; member in struct:vsoc::layout::CircularQueueBase::Range
  /external/freetype/src/psaux/
psstack.c 249 CF2_Int start_idx, idx, i; local
294 start_idx = -1;
301 if ( start_idx == idx )
303 start_idx++;
304 idx = start_idx;
  /device/linaro/bootloader/arm-trusted-firmware/common/
runtime_svc.c 94 unsigned int index, start_idx, end_idx; local
145 start_idx = get_unique_oen(rt_svc_descs[index].start_oen,
147 assert(start_idx < MAX_RT_SVCS);
151 for (; start_idx <= end_idx; start_idx++)
152 rt_svc_descs_indices[start_idx] = index;
  /external/pdfium/xfa/fde/
cfde_texteditengine_unittest.cpp 247 size_t start_idx; local
249 std::tie(start_idx, count) = engine()->GetSelection();
250 EXPECT_EQ(0U, start_idx);
422 size_t start_idx; local
425 std::tie(start_idx, count) = engine()->BoundsForWordAt(100);
426 EXPECT_EQ(0U, start_idx);
428 engine()->SetSelection(start_idx, count);
433 std::tie(start_idx, count) = engine()->BoundsForWordAt(0);
434 EXPECT_EQ(0U, start_idx);
436 engine()->SetSelection(start_idx, count)
618 size_t start_idx = engine()->GetIndexAtStartOfLine(8U); local
    [all...]
cfde_texteditengine.h 90 size_t start_idx,
141 void SetSelection(size_t start_idx, size_t count);
144 // Returns <start_idx, count> of the selection.
146 return {selection_.start_idx, selection_.count};
160 // <start_idx, count>
164 std::pair<int32_t, CFX_RectF> GetCharacterInfo(int32_t start_idx);
165 std::vector<CFX_RectF> GetCharacterRectsInRange(int32_t start_idx,
197 size_t start_idx; member in struct:CFDE_TextEditEngine::Selection
cfde_texteditengine.cpp 25 size_t start_idx,
27 : engine_(engine), start_idx_(start_idx), added_text_(added_text) {}
50 size_t start_idx,
52 : engine_(engine), start_idx_(start_idx), removed_text_(removed_text) {}
75 size_t start_idx,
78 : insert_op_(engine, start_idx, added_text),
79 delete_op_(engine, start_idx, removed_text) {}
734 selection_.start_idx = 0;
740 selection_.start_idx = 0;
744 void CFDE_TextEditEngine::SetSelection(size_t start_idx, size_t count)
833 size_t start_idx = selection_.start_idx; local
1122 size_t start_idx = iter.FindNextBreakPos(true); local
    [all...]
  /external/libopus/silk/
decode_core.c 46 opus_int i, k, lag = 0, start_idx, sLTP_buf_idx, NLSF_interpolation_flag, signalType; local
143 start_idx = psDec->ltp_mem_length - lag - psDec->LPC_order - LTP_ORDER / 2;
144 silk_assert( start_idx > 0 );
150 silk_LPC_analysis_filter( &sLTP[ start_idx ], &psDec->outBuf[ start_idx + k * psDec->subfr_length ],
151 A_Q12, psDec->ltp_mem_length - start_idx, psDec->LPC_order, arch );
NSQ.c 95 opus_int k, lag, start_idx, LSF_interpolation_flag; local
145 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2;
146 silk_assert( start_idx > 0 );
148 silk_LPC_analysis_filter( &sLTP[ start_idx ], &NSQ->xq[ start_idx + k * psEncC->subfr_length ],
149 A_Q12, psEncC->ltp_mem_length - start_idx, psEncC->predictLPCOrder, psEncC->arch );
NSQ_del_dec.c 135 opus_int i, k, lag, start_idx, LSF_interpolation_flag, Winner_ind, subfr; local
252 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2;
253 silk_assert( start_idx > 0 );
255 silk_LPC_analysis_filter( &sLTP[ start_idx ], &NSQ->xq[ start_idx + k * psEncC->subfr_length ],
256 A_Q12, psEncC->ltp_mem_length - start_idx, psEncC->predictLPCOrder, psEncC->arch );
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/psci/
psci_common.c 401 unsigned int start_idx, ncpus; local
416 start_idx = psci_non_cpu_pd_nodes[parent_idx].cpu_start_idx;
417 req_states = psci_get_req_local_pwr_states(lvl, start_idx);
    [all...]
  /external/libopus/silk/x86/
NSQ_sse.c 91 opus_int k, lag, start_idx, LSF_interpolation_flag; local
201 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2;
202 silk_assert( start_idx > 0 );
204 silk_LPC_analysis_filter( &sLTP[ start_idx ], &NSQ->xq[ start_idx + k * psEncC->subfr_length ],
205 A_Q12, psEncC->ltp_mem_length - start_idx, psEncC->predictLPCOrder, psEncC->arch );
    [all...]
NSQ_del_dec_sse.c 132 opus_int i, k, lag, start_idx, LSF_interpolation_flag, Winner_ind, subfr; local
249 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2;
250 silk_assert( start_idx > 0 );
252 silk_LPC_analysis_filter( &sLTP[ start_idx ], &NSQ->xq[ start_idx + k * psEncC->subfr_length ],
253 A_Q12, psEncC->ltp_mem_length - start_idx, psEncC->predictLPCOrder, psEncC->arch );
    [all...]
  /system/bt/stack/gatt/
gatt_api.cc 1060 uint8_t start_idx, found_idx; local
    [all...]
gatt_main.cc 1117 uint8_t start_idx, found_idx; local
    [all...]
gatt_utils.cc 259 bool gatt_find_the_connected_bda(uint8_t start_idx, RawAddress& bda,
264 VLOG(1) << __func__ << " start_idx=" << +start_idx; local
266 for (i = start_idx; i < GATT_MAX_PHY_CHANNEL; i++) {
    [all...]
  /external/elfutils/libcpu/
i386_disasm.c 704 size_t start_idx = bufcnt; local
1107 while (bufcnt + prefix_size - non_printing < start_idx + width)
  /external/libopus/silk/arm/
NSQ_del_dec_neon_intr.c 260 opus_int i, k, lag, start_idx, LSF_interpolation_flag, Winner_ind, subfr; local
373 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2;
374 silk_assert( start_idx > 0 );
376 silk_LPC_analysis_filter( &sLTP[ start_idx ], &NSQ->xq[ start_idx + k * psEncC->subfr_length ],
377 A_Q12, psEncC->ltp_mem_length - start_idx, psEncC->predictLPCOrder, psEncC->arch );
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_edit.cpp 1236 size_t start_idx; local
1277 size_t start_idx; local
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 998 int start_idx = nz_count - 1; local
1037 float r_cur = ddata[sort_buf[(j + start_idx)/2]];
1038 if( (start_idx - j)*r_best >= max_count*r_cur ||
1039 (r_best < FLT_EPSILON && start_idx - j >= max_count) )
    [all...]

Completed in 411 milliseconds