Searched refs:tmp_s (Results 1 – 9 of 9) sorted by relevance
/external/libvpx/libvpx/test/ |
D | lpf_test.cc | 65 uint16_t tmp_s[kNumCoeffs]; in InitInput() local 70 tmp_s[j] = rnd->Rand16(); in InitInput() 76 tmp_s[j] = rnd->Rand16(); in InitInput() 78 tmp_s[j] = static_cast<uint16_t>(tmp_s[j - 1] + (limit - 1)); in InitInput() 80 tmp_s[j] = static_cast<uint16_t>(tmp_s[j - 1] - (limit - 1)); in InitInput() 95 tmp_s[j] = rnd->Rand16(); in InitInput() 97 tmp_s[(j % 32) * 32 + j / 32] = static_cast<uint16_t>( in InitInput() 98 tmp_s[((j - 1) % 32) * 32 + (j - 1) / 32] + (limit - 1)); in InitInput() 100 tmp_s[(j % 32) * 32 + j / 32] = static_cast<uint16_t>( in InitInput() 101 tmp_s[((j - 1) % 32) * 32 + (j - 1) / 32] - (limit - 1)); in InitInput() [all …]
|
/external/libaom/libaom/test/ |
D | lpf_test.cc | 63 uint16_t tmp_s[kNumCoeffs]; in InitInput() local 68 tmp_s[j] = rnd->Rand16(); in InitInput() 74 tmp_s[j] = rnd->Rand16(); in InitInput() 76 tmp_s[j] = static_cast<uint16_t>(tmp_s[j - 1] + (limit - 1)); in InitInput() 78 tmp_s[j] = static_cast<uint16_t>(tmp_s[j - 1] - (limit - 1)); in InitInput() 93 tmp_s[j] = rnd->Rand16(); in InitInput() 95 tmp_s[(j % 32) * 32 + j / 32] = static_cast<uint16_t>( in InitInput() 96 tmp_s[((j - 1) % 32) * 32 + (j - 1) / 32] + (limit - 1)); in InitInput() 98 tmp_s[(j % 32) * 32 + j / 32] = static_cast<uint16_t>( in InitInput() 99 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/tensorflow/tensorflow/compiler/tf2tensorrt/convert/ |
D | utils.h | 97 string tmp_s = ""; in DebugString() local 99 StrAppend(&tmp_s, StrCat(DebugString(el), ", ")); in DebugString() 101 return StrCat("{", tmp_s.substr(0, tmp_s.length() - 2), "}"); in DebugString()
|
/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/util/format/ |
D | u_format.c | 632 uint8_t *tmp_s = NULL; in util_format_translate() local 642 tmp_s = malloc(width * sizeof *tmp_s); in util_format_translate() 651 if (tmp_s) { in util_format_translate() 652 util_format_unpack_s_8uint(src_format, tmp_s, src_row, width); in util_format_translate() 653 util_format_pack_s_8uint(dst_format, dst_row, tmp_s, width); in util_format_translate() 660 free(tmp_s); in util_format_translate()
|
/external/llvm-project/clang/lib/Headers/ppc_wrappers/ |
D | xmmintrin.h | 1217 __vector signed short tmp_s; in _mm_cvtps_pi8() local 1222 tmp_s = vec_pack (tmp_i, zero); in _mm_cvtps_pi8() 1223 res_v = vec_pack (tmp_s, tmp_s); in _mm_cvtps_pi8()
|
/external/clang/test/CodeGen/ |
D | builtins-x86.c | 38 signed short tmp_s; in f0() local
|
/external/llvm-project/clang/test/CodeGen/ |
D | builtins-x86.c | 51 signed short tmp_s; in f0() local
|