Home
last modified time | relevance | path

Searched refs:t_buf (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/arm/
Didct32x32_add_neon.c170 int16_t *t_buf) { in idct32_transpose_pair() argument
242 vst1q_s16(t_buf, q0x2s16.val[0]); in idct32_transpose_pair()
243 t_buf += 8; in idct32_transpose_pair()
244 vst1q_s16(t_buf, q0x2s16.val[1]); in idct32_transpose_pair()
245 t_buf += 8; in idct32_transpose_pair()
246 vst1q_s16(t_buf, q1x2s16.val[0]); in idct32_transpose_pair()
247 t_buf += 8; in idct32_transpose_pair()
248 vst1q_s16(t_buf, q1x2s16.val[1]); in idct32_transpose_pair()
249 t_buf += 8; in idct32_transpose_pair()
250 vst1q_s16(t_buf, q2x2s16.val[0]); in idct32_transpose_pair()
[all …]
/external/libedit/src/
Dterminal.c272 el->el_terminal.t_buf = el_malloc(TC_BUFSIZE * in terminal_init()
273 sizeof(*el->el_terminal.t_buf)); in terminal_init()
274 if (el->el_terminal.t_buf == NULL) in terminal_init()
309 el_free(el->el_terminal.t_buf); in terminal_end()
310 el->el_terminal.t_buf = NULL; in terminal_end()
357 (void) strcpy(*str = &el->el_terminal.t_buf[ in terminal_alloc()
375 memcpy(el->el_terminal.t_buf, termbuf, TC_BUFSIZE); in terminal_alloc()
383 (void) strcpy(*str = &el->el_terminal.t_buf[el->el_terminal.t_loc], in terminal_alloc()
1162 if (el->el_terminal.t_buf == NULL || el->el_map.key == NULL) in terminal_bind_arrow()
Dterminal.h65 char *t_buf; /* Termcap buffer */ member