Searched defs:ind (Results 1 - 25 of 123) sorted by relevance

12345

/external/libopus/silk/
H A Dsigm_Q15.c53 opus_int ind; local
62 ind = silk_RSHIFT( in_Q5, 5 );
63 return( sigm_LUT_neg_Q15[ ind ] - silk_SMULBB( sigm_LUT_slope_Q10[ ind ], in_Q5 & 0x1F ) );
71 ind = silk_RSHIFT( in_Q5, 5 );
72 return( sigm_LUT_pos_Q15[ ind ] + silk_SMULBB( sigm_LUT_slope_Q10[ ind ], in_Q5 & 0x1F ) );
H A DLP_variable_cutoff.c44 const opus_int ind,
50 if( ind < TRANSITION_INT_NUM - 1 ) {
56 silk_Transition_LP_B_Q28[ ind ][ nb ],
57 silk_Transition_LP_B_Q28[ ind + 1 ][ nb ] -
58 silk_Transition_LP_B_Q28[ ind ][ nb ],
63 silk_Transition_LP_A_Q28[ ind ][ na ],
64 silk_Transition_LP_A_Q28[ ind + 1 ][ na ] -
65 silk_Transition_LP_A_Q28[ ind ][ na ],
73 silk_Transition_LP_B_Q28[ ind + 1 ][ nb ],
74 silk_Transition_LP_B_Q28[ ind
41 silk_LP_interpolate_filter_taps( opus_int32 B_Q28[ TRANSITION_NB ], opus_int32 A_Q28[ TRANSITION_NA ], const opus_int ind, const opus_int32 fac_Q16 ) argument
107 opus_int ind = 0; local
[all...]
H A DVQ_WMat_EC.c36 opus_int8 *ind, /* O index of best codebook vector */
67 /* In things go really bad, at least *ind is set to something safe. */
68 *ind = 0;
123 *ind = (opus_int8)k;
35 silk_VQ_WMat_EC_c( opus_int8 *ind, opus_int32 *res_nrg_Q15, opus_int32 *rate_dist_Q8, opus_int *gain_Q7, const opus_int32 *XX_Q17, const opus_int32 *xX_Q17, const opus_int8 *cb_Q7, const opus_uint8 *cb_gain_Q7, const opus_uint8 *cl_Q5, const opus_int subfr_len, const opus_int32 max_gain_Q7, const opus_int L ) argument
/external/ltp/testcases/kernel/fs/doio/
H A Dforker.c163 static int ind = 0; local
165 Forker_pids[ind] = 0;
244 int ind; local
274 for (ind = 0; ind < Forker_npids; ind++) {
275 printf("%d ind:%-2d pid:%d\n", getpid(), ind, Forker_pids[ind]);
H A Ddatabin.c46 int ind; local
59 for (ind = 0; ind < bsize; ind++)
60 buffer[ind] = ((offset + ind) % 8 & 0177);
73 for (ind = 0; ind < bsize; ind++)
74 buffer[ind]
[all...]
H A Ddataascii.c49 int ind; local
66 ind = cnt % chars_size;
67 *chr++ = charlist[ind];
78 int ind; local
98 ind = cnt % chars_size;
99 if (*chr != charlist[ind]) {
102 cnt, charlist[ind], *chr);
H A Dopen_flags.c197 unsigned int ind; local
210 for (ind = 0;
211 ind < sizeof(Open_flags) / sizeof(struct open_flag_t);
212 ind++) {
213 if (strcmp(name, Open_flags[ind].symbol) == 0) {
214 bits |= Open_flags[ind].flag;
241 int ind; local
263 for (ind = 1; ind < size; ind
[all...]
/external/ltp/testcases/kernel/syscalls/dup/
H A Ddup02.c131 int ind; local
141 for (ind = 0; ind < nfds; ind++) {
143 TEST(dup(Fds[ind]));
/external/ltp/testcases/kernel/syscalls/fchmod/
H A Dfchmod07.c95 int ind; /* counter variable for chmod(2) tests */ local
108 for (ind = 0; ind < TST_TOTAL; ind++) {
109 mode = Modes[ind];
/external/ltp/testcases/kernel/syscalls/mremap/
H A Dmremap01.c101 int ind; /* counter variable */ local
124 for (ind = 0; ind < newsize; ind++) {
125 addr[ind] = (char)ind;
/external/ltp/testcases/kernel/syscalls/sched_get_priority_max/
H A Dsched_get_priority_max01.c91 int lc, ind; local
101 for (ind = 0; ind < TST_TOTAL; ind++) {
105 TEST(sched_get_priority_max(test_cases[ind].policy));
107 if (TEST_RETURN == test_cases[ind].retval) {
109 test_cases[ind].desc);
113 test_cases[ind].desc, TEST_RETURN);
/external/ltp/testcases/kernel/syscalls/sched_get_priority_min/
H A Dsched_get_priority_min01.c91 int lc, ind; local
101 for (ind = 0; ind < TST_TOTAL; ind++) {
105 TEST(sched_get_priority_min(test_cases[ind].policy));
107 if (TEST_RETURN == test_cases[ind].retval) {
109 test_cases[ind].desc);
113 test_cases[ind].desc, TEST_RETURN);
/external/iproute2/tc/
H A Dq_dsmark.c32 __u16 ind; local
36 ind = set_tc_index = 0;
41 ind = strtoul(*argv, &end, 0);
63 if (!ind) {
69 addattr_l(n, 1024, TCA_DSMARK_INDICES, &ind, sizeof(ind));
/external/jemalloc/src/
H A Dextent.c14 szind_t ind; local
18 ind = size2index(size + 1);
19 if (ind == 0) {
23 ret = index2size(ind - 1);
/external/ltp/testcases/kernel/syscalls/clone/
H A Dclone04.c55 int lc, ind; local
65 for (ind = 0; ind < TST_TOTAL; ind++) {
66 if (test_cases[ind].child_stack == NULL) {
68 } else if (*test_cases[ind].child_stack == NULL) {
76 TEST(ltp_clone(0, test_cases[ind].child_fn, NULL,
80 (TEST_ERRNO == test_cases[ind].exp_errno)) {
82 test_cases[ind].err_desc);
87 test_cases[ind]
[all...]
/external/ltp/testcases/kernel/syscalls/setdomainname/
H A Dsetdomainname02.c108 int lc, ind; local
120 for (ind = 0; ind < TST_TOTAL; ind++) {
125 TEST(setdomainname(test_cases[ind].name,
126 (size_t) test_cases[ind].len));
129 (TEST_ERRNO == test_cases[ind].exp_errno)) {
131 test_cases[ind].err_desc);
136 test_cases[ind].exp_errno,
/external/ltp/testcases/kernel/syscalls/sigaltstack/
H A Dsigaltstack02.c114 int ind; /* counter to test different test conditions */ local
124 for (ind = 0; Test_cases[ind].desc != NULL; ind++) {
125 sigstk.ss_size = Test_cases[ind].size;
126 sigstk.ss_flags = Test_cases[ind].flag;
127 test_desc = Test_cases[ind].desc;
135 Test_cases[ind].exp_errno) {
145 [ind].exp_errno);
150 Test_cases[ind]
[all...]
/external/jemalloc/test/integration/
H A Dmallocx.c28 get_size_impl(const char *cmd, size_t ind) argument
38 mib[2] = ind;
41 0, "Unexpected mallctlbymib([\"%s\", %zu], ...) failure", cmd, ind); local
47 get_huge_size(size_t ind) argument
50 return (get_size_impl("arenas.hchunk.0.size", ind));
/external/jemalloc/test/unit/
H A Darena_reset.c42 get_size_impl(const char *cmd, size_t ind) argument
52 mib[2] = ind;
55 0, "Unexpected mallctlbymib([\"%s\", %zu], ...) failure", cmd, ind); local
61 get_small_size(size_t ind) argument
64 return (get_size_impl("arenas.bin.0.size", ind));
68 get_large_size(size_t ind) argument
71 return (get_size_impl("arenas.lrun.0.size", ind));
75 get_huge_size(size_t ind) argument
78 return (get_size_impl("arenas.hchunk.0.size", ind));
/external/libopus/silk/x86/
H A DVQ_WMat_EC_sse.c40 opus_int8 *ind, /* O index of best codebook vector */
135 *ind = (opus_int8)k;
39 silk_VQ_WMat_EC_sse4_1( opus_int8 *ind, opus_int32 *rate_dist_Q14, opus_int *gain_Q7, const opus_int16 *in_Q14, const opus_int32 *W_Q18, const opus_int8 *cb_Q7, const opus_uint8 *cb_gain_Q7, const opus_uint8 *cl_Q5, const opus_int mu_Q9, const opus_int32 max_gain_Q7, opus_int L ) argument
/external/ltp/testcases/kernel/syscalls/mknod/
H A Dmknod06.c137 int ind; /* counter to test different test conditions */ local
151 for (ind = 0; Test_cases[ind].desc != NULL; ind++) {
152 node_name = Test_cases[ind].pathname;
153 test_desc = Test_cases[ind].desc;
173 Test_cases[ind].exp_errno);
177 if (TEST_ERRNO == Test_cases[ind].exp_errno) {
183 TEST_ERRNO, Test_cases[ind].exp_errno);
208 int ind; local
250 int ind; /* counter variable */ local
[all...]
/external/ltp/testcases/kernel/syscalls/sched_getparam/
H A Dsched_getparam03.c106 int lc, ind; local
117 for (ind = 0; ind < TST_TOTAL; ind++) {
123 TEST(sched_getparam(*(test_cases[ind].pid),
124 test_cases[ind].p));
127 (TEST_ERRNO == test_cases[ind].exp_errno)) {
129 test_cases[ind].err_desc);
134 test_cases[ind].exp_errno,
/external/ltp/testcases/kernel/syscalls/sched_setparam/
H A Dsched_setparam04.c112 int lc, ind; local
123 for (ind = 0; ind < TST_TOTAL; ind++) {
127 TEST(sched_setparam(*(test_cases[ind].pid),
128 test_cases[ind].p));
131 (TEST_ERRNO == test_cases[ind].exp_errno)) {
133 test_cases[ind].err_desc);
138 test_cases[ind].exp_errno,
/external/ltp/testcases/kernel/syscalls/unlink/
H A Dunlink07.c175 int ind; local
194 for (ind = 0; Test_cases[ind].desc != NULL; ind++) {
196 fname = Test_cases[ind].pathname;
197 desc = Test_cases[ind].desc;
211 Test_cases[ind].exp_errno)
220 [ind].exp_errno);
225 Test_cases[ind].exp_errno);
240 int ind; local
286 int ind; local
[all...]
H A Dunlink08.c164 int ind; local
183 for (ind = 0; Test_cases[ind].desc != NULL; ind++) {
185 fname = Test_cases[ind].pathname;
186 desc = Test_cases[ind].desc;
195 if (Test_cases[ind].exp_ret == -1) { /* neg test */
197 Test_cases[ind].exp_errno)
208 [ind].exp_errno);
215 if (Test_cases[ind]
240 int ind; local
[all...]

Completed in 442 milliseconds

12345