Home
last modified time | relevance | path

Searched refs:endidx (Results 1 – 10 of 10) sorted by relevance

/external/libaom/libaom/av1/encoder/x86/
Dav1_fwd_txfm1d_sse4.c21 int endidx = 31 * stride; in av1_fdct32_new_sse4_1() local
24 buf1[0] = _mm_add_epi32(input[startidx], input[endidx]); in av1_fdct32_new_sse4_1()
25 buf1[31] = _mm_sub_epi32(input[startidx], input[endidx]); in av1_fdct32_new_sse4_1()
27 endidx -= stride; in av1_fdct32_new_sse4_1()
28 buf1[1] = _mm_add_epi32(input[startidx], input[endidx]); in av1_fdct32_new_sse4_1()
29 buf1[30] = _mm_sub_epi32(input[startidx], input[endidx]); in av1_fdct32_new_sse4_1()
31 endidx -= stride; in av1_fdct32_new_sse4_1()
32 buf1[2] = _mm_add_epi32(input[startidx], input[endidx]); in av1_fdct32_new_sse4_1()
33 buf1[29] = _mm_sub_epi32(input[startidx], input[endidx]); in av1_fdct32_new_sse4_1()
35 endidx -= stride; in av1_fdct32_new_sse4_1()
[all …]
Dhighbd_fwd_txfm_avx2.c1612 int endidx = 31 * instride; in av1_fdct32_avx2() local
1615 buf1[0] = _mm256_add_epi32(input[startidx], input[endidx]); in av1_fdct32_avx2()
1616 buf1[31] = _mm256_sub_epi32(input[startidx], input[endidx]); in av1_fdct32_avx2()
1618 endidx -= instride; in av1_fdct32_avx2()
1619 buf1[1] = _mm256_add_epi32(input[startidx], input[endidx]); in av1_fdct32_avx2()
1620 buf1[30] = _mm256_sub_epi32(input[startidx], input[endidx]); in av1_fdct32_avx2()
1622 endidx -= instride; in av1_fdct32_avx2()
1623 buf1[2] = _mm256_add_epi32(input[startidx], input[endidx]); in av1_fdct32_avx2()
1624 buf1[29] = _mm256_sub_epi32(input[startidx], input[endidx]); in av1_fdct32_avx2()
1626 endidx -= instride; in av1_fdct32_avx2()
[all …]
Dhighbd_fwd_txfm_sse4.c73 int endidx = 3 * num_col; in fdct4x4_sse4_1() local
74 s0 = _mm_add_epi32(in[0], in[endidx]); in fdct4x4_sse4_1()
75 s3 = _mm_sub_epi32(in[0], in[endidx]); in fdct4x4_sse4_1()
76 endidx -= num_col; in fdct4x4_sse4_1()
77 s1 = _mm_add_epi32(in[num_col], in[endidx]); in fdct4x4_sse4_1()
78 s2 = _mm_sub_epi32(in[num_col], in[endidx]); in fdct4x4_sse4_1()
530 int endidx = 7 * col_num; in fdct4x8_sse4_1() local
534 u[0] = _mm_add_epi32(in[startidx], in[endidx]); in fdct4x8_sse4_1()
535 v[7] = _mm_sub_epi32(in[startidx], in[endidx]); // v[7] in fdct4x8_sse4_1()
537 endidx -= col_num; in fdct4x8_sse4_1()
[all …]
/external/python/cpython3/Modules/
Dreadline.c87 PyObject *endidx; member
102 Py_CLEAR(state->endidx); in readline_clear()
115 Py_VISIT(state->endidx); in readline_traverse()
449 Py_INCREF(readlinestate_global->endidx); in get_endidx()
450 return readlinestate_global->endidx; in get_endidx()
1060 Py_XDECREF(readlinestate_global->endidx); in flex_complete()
1062 readlinestate_global->endidx = PyLong_FromLong((long) end); in flex_complete()
1127 mod_state->endidx = PyLong_FromLong(0L); in setup_readline()
/external/python/cpython2/Modules/
Dreadline.c303 static PyObject *endidx = NULL; variable
337 Py_INCREF(endidx); in get_endidx()
338 return endidx; in get_endidx()
895 Py_XDECREF(endidx); in flex_complete()
897 endidx = PyInt_FromLong((long) end); in flex_complete()
962 endidx = PyInt_FromLong(0L); in setup_readline()
/external/python/cpython2/Lib/
Dcmd.py267 endidx = readline.get_endidx() - stripped
279 self.completion_matches = compfunc(text, line, begidx, endidx)
/external/python/cpython3/Lib/
Dcmd.py263 endidx = readline.get_endidx() - stripped
275 self.completion_matches = compfunc(text, line, begidx, endidx)
Dpdb.py461 def _complete_location(self, text, line, begidx, endidx): argument
468 ret = self._complete_expression(text, line, begidx, endidx)
480 def _complete_bpnumber(self, text, line, begidx, endidx): argument
487 def _complete_expression(self, text, line, begidx, endidx): argument
1370 def complete_undisplay(self, text, line, begidx, endidx): argument
1428 def complete_unalias(self, text, line, begidx, endidx): argument
/external/python/cpython2/Doc/library/
Dcmd.rst78 arguments *text*, *line*, *begidx*, and *endidx*. *text* is the string prefix
80 the current input line with leading whitespace removed, *begidx* and *endidx*
116 .. method:: Cmd.completedefault(text, line, begidx, endidx)
/external/python/cpython3/Doc/library/
Dcmd.rst80 arguments *text*, *line*, *begidx*, and *endidx*. *text* is the string prefix
82 the current input line with leading whitespace removed, *begidx* and *endidx*
118 .. method:: Cmd.completedefault(text, line, begidx, endidx)