| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | getopt.c | 62 state->ind = first; in lsx_getopt_init() 76 state->ind++; in CheckCurPosEnd() 95 assert(state->ind >= 0); in lsx_getopt() 96 assert(state->ind <= state->argc + 1); in lsx_getopt() 106 state->ind < 0) in lsx_getopt() 113 state->argc <= state->ind || in lsx_getopt() 114 !state->argv[state->ind] || in lsx_getopt() 115 state->argv[state->ind][0] != '-' || in lsx_getopt() 116 state->argv[state->ind][1] == '\0') in lsx_getopt() 121 else if (state->argv[state->ind][1] == '-' && state->argv[state->ind][2] == '\0') in lsx_getopt() [all …]
|
| /OK3568_Linux_fs/kernel/kernel/irq/ |
| H A D | debugfs.c | 18 static void irq_debug_show_bits(struct seq_file *m, int ind, unsigned int state, in irq_debug_show_bits() argument 25 seq_printf(m, "%*s%s\n", ind + 12, "", sd->name); in irq_debug_show_bits() 64 irq_debug_show_chip(struct seq_file *m, struct irq_data *data, int ind) in irq_debug_show_chip() argument 72 seq_printf(m, "%*schip: %s\n", ind, "", chip->name); in irq_debug_show_chip() 73 seq_printf(m, "%*sflags: 0x%lx\n", ind + 1, "", chip->flags); in irq_debug_show_chip() 74 irq_debug_show_bits(m, ind, chip->flags, irqchip_flags, in irq_debug_show_chip() 79 irq_debug_show_data(struct seq_file *m, struct irq_data *data, int ind) in irq_debug_show_data() argument 81 seq_printf(m, "%*sdomain: %s\n", ind, "", in irq_debug_show_data() 83 seq_printf(m, "%*shwirq: 0x%lx\n", ind + 1, "", data->hwirq); in irq_debug_show_data() 84 irq_debug_show_chip(m, data, ind + 1); in irq_debug_show_data() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/flann/ |
| H A D | kdtree_index.h | 281 NodePtr divideTree(int* ind, int count) in divideTree() argument 288 node->divfeat = *ind; /* Store index of this vec. */ in divideTree() 294 meanSplit(ind, count, idx, cutfeat, cutval); in divideTree() 298 node->child1 = divideTree(ind, idx); in divideTree() 299 node->child2 = divideTree(ind+idx, count-idx); in divideTree() 311 void meanSplit(int* ind, int count, int& index, int& cutfeat, DistanceType& cutval) in meanSplit() argument 321 ElementType* v = dataset_[ind[j]]; in meanSplit() 332 ElementType* v = dataset_[ind[j]]; in meanSplit() 343 planeSplit(ind, count, cutfeat, cutval, lim1, lim2); in meanSplit() 398 void planeSplit(int* ind, int count, int cutfeat, DistanceType cutval, int& lim1, int& lim2) in planeSplit() argument [all …]
|
| H A D | kdtree_single_index.h | 390 void computeMinMax(int* ind, int count, int dim, ElementType& min_elem, ElementType& max_elem) in computeMinMax() argument 392 min_elem = dataset_[ind[0]][dim]; in computeMinMax() 393 max_elem = dataset_[ind[0]][dim]; in computeMinMax() 395 ElementType val = dataset_[ind[i]][dim]; in computeMinMax() 401 …void middleSplit(int* ind, int count, int& index, int& cutfeat, DistanceType& cutval, const Boundi… in middleSplit() argument 418 computeMinMax(ind, count, cutfeat, min_elem, max_elem); in middleSplit() 428 computeMinMax(ind, count, i, min_elem, max_elem); in middleSplit() 438 planeSplit(ind, count, cutfeat, cutval, lim1, lim2); in middleSplit() 446 …void middleSplit_(int* ind, int count, int& index, int& cutfeat, DistanceType& cutval, const Bound… in middleSplit_() argument 462 computeMinMax(ind, count, cutfeat, min_elem, max_elem); in middleSplit_() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/s390/cio/ |
| H A D | qdio_thinint.c | 34 u32 ind; /* u32 because of compare-and-swap performance */ member 53 return &q_indicators[i].ind; in get_indicator() 57 return &q_indicators[TIQDIO_SHARED_IND].ind; in get_indicator() 62 struct indicator_t *ind = container_of(addr, struct indicator_t, ind); in put_indicator() local 66 atomic_dec(&ind->count); in put_indicator() 87 return irq_ptr->dsci == &q_indicators[TIQDIO_SHARED_IND].ind; in references_shared_dsci() 106 return xchg(&q_indicators[TIQDIO_SHARED_IND].ind, 0); in clear_shared_ind()
|
| /OK3568_Linux_fs/kernel/arch/powerpc/mm/nohash/ |
| H A D | tlb.c | 103 .ind = 20, 112 .ind = 28, 121 .ind = 36, 204 int tsize, int ind) in __local_flush_tlb_page() argument 211 _tlbil_va(vmaddr, pid, tsize, ind); in __local_flush_tlb_page() 233 unsigned int ind; member 247 _tlbil_va(p->addr, p->pid, p->tsize, p->ind); in do_flush_tlb_page_ipi() 288 int tsize, int ind) in __flush_tlb_page() argument 311 _tlbivax_bcast(vmaddr, pid, tsize, ind); in __flush_tlb_page() 320 .ind = ind, in __flush_tlb_page() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/cpufreq/ |
| H A D | qoriq-cpufreq.c | 127 int i, j, ind; in freq_table_sort() local 133 ind = i; in freq_table_sort() 139 ind = j; in freq_table_sort() 143 if (ind != i) { in freq_table_sort() 147 freq_table[i].driver_data = freq_table[ind].driver_data; in freq_table_sort() 148 freq_table[i].frequency = freq_table[ind].frequency; in freq_table_sort() 149 freq_table[ind].driver_data = table.driver_data; in freq_table_sort() 150 freq_table[ind].frequency = table.frequency; in freq_table_sort()
|
| /OK3568_Linux_fs/kernel/include/net/ |
| H A D | llc_pdu.h | 183 #define FRMR_INFO_SET_INVALID_PDU_CTRL_IND(info, ind) \ argument 184 (info->ind_bits = ((info->ind_bits & 0xFE) | (((u8) ind) & 0x01))) 186 #define FRMR_INFO_SET_INVALID_PDU_INFO_IND(info, ind) \ argument 187 (info->ind_bits = ( (info->ind_bits & 0xFD) | (((u8) ind) & 0x02))) 189 #define FRMR_INFO_SET_PDU_INFO_2LONG_IND(info, ind) \ argument 190 (info->ind_bits = ( (info->ind_bits & 0xFB) | (((u8) ind) & 0x04))) 192 #define FRMR_INFO_SET_PDU_INVALID_Nr_IND(info, ind) \ argument 193 (info->ind_bits = ( (info->ind_bits & 0xF7) | (((u8) ind) & 0x08))) 195 #define FRMR_INFO_SET_PDU_INVALID_Ns_IND(info, ind) \ argument 196 (info->ind_bits = ( (info->ind_bits & 0xEF) | (((u8) ind) & 0x10)))
|
| /OK3568_Linux_fs/kernel/drivers/accessibility/speakup/ |
| H A D | speakup_dectlk.c | 172 static int ind = -1; in read_buff_add() local 186 if (ind == -1) in read_buff_add() 187 ind = c; in read_buff_add() 189 ind = ind * 10 + c; in read_buff_add() 191 if (ind != -1) in read_buff_add() 192 lastind = (u_char)ind; in read_buff_add() 193 ind = -1; in read_buff_add()
|
| /OK3568_Linux_fs/kernel/arch/powerpc/mm/ |
| H A D | mmu_decl.h | 53 unsigned int tsize, unsigned int ind) in _tlbil_va() argument 60 unsigned int tsize, unsigned int ind); 64 unsigned int tsize, unsigned int ind) in _tlbil_va() argument 72 unsigned int tsize, unsigned int ind); 75 unsigned int tsize, unsigned int ind) in _tlbivax_bcast() argument
|
| /OK3568_Linux_fs/kernel/drivers/soc/qcom/ |
| H A D | pdr_interface.c | 277 struct pdr_list_node *ind, *tmp; in pdr_indack_work() local 280 list_for_each_entry_safe(ind, tmp, &pdr->indack_list, node) { in pdr_indack_work() 281 pds = ind->pds; in pdr_indack_work() 284 pds->state = ind->curr_state; in pdr_indack_work() 289 pdr_send_indack_msg(pdr, pds, ind->transaction_id); in pdr_indack_work() 292 list_del(&ind->node); in pdr_indack_work() 295 kfree(ind); in pdr_indack_work() 306 struct pdr_list_node *ind; in pdr_indication_cb() local 331 ind = kzalloc(sizeof(*ind), GFP_KERNEL); in pdr_indication_cb() 332 if (!ind) in pdr_indication_cb() [all …]
|
| /OK3568_Linux_fs/external/rk_pcba_test/mic_test_Linux/ |
| H A D | vibrate_test.c | 40 int ind = 1; in check_vibration() local 152 ind = 1; in check_vibration() 156 ind = 0; in check_vibration() 159 printf("result is %d\tmaxA is %2.3f \n",ind, maxA); in check_vibration() 160 return ind; in check_vibration()
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/mthca/ |
| H A D | mthca_srq.c | 467 int ind; in mthca_free_srq_wqe() local 470 ind = wqe_addr >> srq->wqe_shift; in mthca_free_srq_wqe() 475 *wqe_to_link(last_free) = ind; in mthca_free_srq_wqe() 476 last_free->nda_op = htonl((ind << srq->wqe_shift) | 1); in mthca_free_srq_wqe() 477 *wqe_to_link(get_wqe(srq, ind)) = -1; in mthca_free_srq_wqe() 478 srq->last_free = ind; in mthca_free_srq_wqe() 491 int ind; in mthca_tavor_post_srq_recv() local 503 ind = srq->first_free; in mthca_tavor_post_srq_recv() 504 wqe = get_wqe(srq, ind); in mthca_tavor_post_srq_recv() 540 srq->wrid[ind] = wr->wr_id; in mthca_tavor_post_srq_recv() [all …]
|
| H A D | mthca_qp.c | 1497 static int build_mlx_header(struct mthca_dev *dev, struct mthca_qp *qp, int ind, in build_mlx_header() argument 1555 ind * MTHCA_UD_HEADER_SIZE); in build_mlx_header() 1560 ind * MTHCA_UD_HEADER_SIZE); in build_mlx_header() 1643 int ind; in mthca_tavor_post_send() local 1650 ind = qp->sq.next_ind; in mthca_tavor_post_send() 1663 wqe = get_send_wqe(qp, ind); in mthca_tavor_post_send() 1738 dev, qp, ind, ud_wr(wr), in mthca_tavor_post_send() 1771 qp->wrid[ind + qp->rq.max] = wr->wr_id; in mthca_tavor_post_send() 1781 cpu_to_be32(((ind << qp->sq.wqe_shift) + in mthca_tavor_post_send() 1797 ++ind; in mthca_tavor_post_send() [all …]
|
| /OK3568_Linux_fs/u-boot/board/ti/am335x/ |
| H A D | board.c | 263 int ind = get_sys_clk_index(); in get_dpll_ddr_params() local 266 return &dpll_ddr3_303MHz[ind]; in get_dpll_ddr_params() 268 return &dpll_ddr3_400MHz[ind]; in get_dpll_ddr_params() 270 return &dpll_ddr3_303MHz[ind]; in get_dpll_ddr_params() 272 return &dpll_ddr2_266MHz[ind]; in get_dpll_ddr_params() 292 int ind = get_sys_clk_index(); in get_dpll_mpu_params() local 303 return &dpll_mpu_opp[ind][5]; in get_dpll_mpu_params() 305 return &dpll_mpu_opp[ind][4]; in get_dpll_mpu_params() 307 return &dpll_mpu_opp[ind][3]; in get_dpll_mpu_params() 309 return &dpll_mpu_opp[ind][2]; in get_dpll_mpu_params() [all …]
|
| /OK3568_Linux_fs/u-boot/arch/arm/mach-omap2/am33xx/ |
| H A D | sys_info.c | 64 u32 ind = readl(&ctrl->statusreg); in get_sys_clk_index() local 68 src = (ind & CTRL_CRYSTAL_FREQ_SRC_MASK) >> CTRL_CRYSTAL_FREQ_SRC_SHIFT; in get_sys_clk_index() 70 return ((ind & CTRL_CRYSTAL_FREQ_SELECTION_MASK) >> in get_sys_clk_index() 74 return ((ind & CTRL_SYSBOOT_15_14_MASK) >> in get_sys_clk_index()
|
| H A D | clock_am33xx.c | 137 int ind = get_sys_clk_index(); in get_dpll_core_params() local 139 return &dpll_core_1000MHz[ind]; in get_dpll_core_params() 144 int ind = get_sys_clk_index(); in get_dpll_per_params() local 146 return &dpll_per_192MHz[ind]; in get_dpll_per_params()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/cuda/detail/ |
| H A D | vec_distance_detail.hpp | 57 …tic __device__ void calcCheck(const T1* vecCached, const T2* vecGlob, int len, Dist& dist, int ind) in calcCheck() 59 if (ind < len) in calcCheck() 64 ForceGlob<T2>::Load(vecGlob, ind, val2); in calcCheck() 68 …UnrollVecDiffCached<THREAD_DIM, N - 1>::calcCheck(vecCached, vecGlob, len, dist, ind + THREAD_DIM); in calcCheck()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/cuda/detail/ |
| H A D | vec_distance_detail.hpp | 57 …tic __device__ void calcCheck(const T1* vecCached, const T2* vecGlob, int len, Dist& dist, int ind) in calcCheck() 59 if (ind < len) in calcCheck() 64 ForceGlob<T2>::Load(vecGlob, ind, val2); in calcCheck() 68 …UnrollVecDiffCached<THREAD_DIM, N - 1>::calcCheck(vecCached, vecGlob, len, dist, ind + THREAD_DIM); in calcCheck()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/detail/ |
| H A D | vec_distance_detail.hpp | 57 …tic __device__ void calcCheck(const T1* vecCached, const T2* vecGlob, int len, Dist& dist, int ind) in calcCheck() 59 if (ind < len) in calcCheck() 64 ForceGlob<T2>::Load(vecGlob, ind, val2); in calcCheck() 68 …UnrollVecDiffCached<THREAD_DIM, N - 1>::calcCheck(vecCached, vecGlob, len, dist, ind + THREAD_DIM); in calcCheck()
|
| /OK3568_Linux_fs/kernel/samples/bpf/ |
| H A D | tracex2_user.c | 53 int i, ind; in print_hist_for_pid() local 64 ind = next_key.index; in print_hist_for_pid() 65 data[ind] = value; in print_hist_for_pid() 66 if (value && ind > max_ind) in print_hist_for_pid() 67 max_ind = ind; in print_hist_for_pid()
|
| /OK3568_Linux_fs/kernel/tools/perf/tests/ |
| H A D | bpf-script-example.c | 38 int ind =0; in bpf_func__SyS_epoll_pwait() local 39 int *flag = bpf_map_lookup_elem(&flip_table, &ind); in bpf_func__SyS_epoll_pwait() 45 bpf_map_update_elem(&flip_table, &ind, &new_flag, BPF_ANY); in bpf_func__SyS_epoll_pwait()
|
| /OK3568_Linux_fs/kernel/arch/x86/kernel/apic/ |
| H A D | vector.c | 602 struct irq_data *irqd, int ind) in x86_vector_debug_show() argument 609 irq_matrix_debug_show(m, vector_matrix, ind); in x86_vector_debug_show() 615 seq_printf(m, "%*sVector: %5d\n", ind, "", ISA_IRQ_VECTOR(irq)); in x86_vector_debug_show() 616 seq_printf(m, "%*sTarget: Legacy PIC all CPUs\n", ind, ""); in x86_vector_debug_show() 621 seq_printf(m, "%*sVector: Not assigned\n", ind, ""); in x86_vector_debug_show() 629 seq_printf(m, "%*sVector: %5u\n", ind, "", apicd.vector); in x86_vector_debug_show() 630 seq_printf(m, "%*sTarget: %5u\n", ind, "", apicd.cpu); in x86_vector_debug_show() 632 seq_printf(m, "%*sPrevious vector: %5u\n", ind, "", apicd.prev_vector); in x86_vector_debug_show() 633 seq_printf(m, "%*sPrevious target: %5u\n", ind, "", apicd.prev_cpu); in x86_vector_debug_show() 635 seq_printf(m, "%*smove_in_progress: %u\n", ind, "", apicd.move_in_progress ? 1 : 0); in x86_vector_debug_show() [all …]
|
| /OK3568_Linux_fs/u-boot/board/ti/am43xx/ |
| H A D | board.c | 322 int ind = get_sys_clk_index(); in get_dpll_ddr_params() local 325 return &epos_evm_dpll_ddr[ind]; in get_dpll_ddr_params() 366 u32 ind = get_sys_clk_index(); in get_dpll_mpu_params() local 368 return &dpll_mpu[ind][opp]; in get_dpll_mpu_params() 373 int ind = get_sys_clk_index(); in get_dpll_core_params() local 375 return &dpll_core[ind]; in get_dpll_core_params() 380 int ind = get_sys_clk_index(); in get_dpll_per_params() local 382 return &dpll_per[ind]; in get_dpll_per_params()
|
| /OK3568_Linux_fs/buildroot/support/kconfig/patches/ |
| H A D | 18-merge-config.sh-create-temporary-files-in-tmp.patch | 2 Author: Henrique Marks <henrique.marks@datacom.ind.br> 11 Signed-off-by: Henrique Marks <henrique.marks@datacom.ind.br> 12 Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
|