Searched refs:tmp_s (Results 1 – 5 of 5) sorted by relevance
/external/libvpx/libvpx/test/ |
D | lpf_test.cc | 64 uint16_t tmp_s[kNumCoeffs]; in InitInput() local 69 tmp_s[j] = rnd->Rand16(); in InitInput() 75 tmp_s[j] = rnd->Rand16(); in InitInput() 77 tmp_s[j] = tmp_s[j - 1] + (limit - 1); in InitInput() 79 tmp_s[j] = tmp_s[j - 1] - (limit - 1); in InitInput() 94 tmp_s[j] = rnd->Rand16(); in InitInput() 96 tmp_s[(j % 32) * 32 + j / 32] = in InitInput() 97 tmp_s[((j - 1) % 32) * 32 + (j - 1) / 32] + (limit - 1); in InitInput() 99 tmp_s[(j % 32) * 32 + j / 32] = in InitInput() 100 tmp_s[((j - 1) % 32) * 32 + (j - 1) / 32] - (limit - 1); in InitInput() [all …]
|
/external/scapy/scapy/contrib/ |
D | gtp.py | 406 tmp_s = s 407 while tmp_s: 408 tmp_len = orb(tmp_s[0]) + 1 409 if tmp_len > len(tmp_s): 410 …ing("APN prematured end of character-string (size=%i, remaining bytes=%i)" % (tmp_len, len(tmp_s))) 411 ret_s += tmp_s[1:tmp_len] 412 tmp_s = tmp_s[tmp_len:] 413 if len(tmp_s) :
|
/external/scapy/scapy/layers/ |
D | dns.py | 209 tmp_s = s 212 while tmp_s: 213 tmp_len = orb(tmp_s[0]) + 1 214 if tmp_len > len(tmp_s): 215 …S RR TXT prematured end of character-string (size=%i, remaining bytes=%i)" % (tmp_len, len(tmp_s))) 216 ret_s += tmp_s[1:tmp_len] 217 tmp_s = tmp_s[tmp_len:]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format.c | 670 uint8_t *tmp_s = NULL; in util_format_translate() local 682 tmp_s = MALLOC(width * sizeof *tmp_s); in util_format_translate() 691 if (tmp_s) { in util_format_translate() 692 src_format_desc->unpack_s_8uint(tmp_s, 0, src_row, src_stride, width, 1); in util_format_translate() 693 dst_format_desc->pack_s_8uint(dst_row, dst_stride, tmp_s, 0, width, 1); in util_format_translate() 700 FREE(tmp_s); in util_format_translate()
|
/external/clang/test/CodeGen/ |
D | builtins-x86.c | 38 signed short tmp_s; in f0() local
|