Home
last modified time | relevance | path

Searched refs:consts2 (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
Djidctint-neon.c362 const int16x4_t consts2 = vld1_s16(jsimd_idct_islow_neon_consts + 4); in jsimd_idct_islow_pass1_regular()
364 const int16x4x3_t consts = { { consts1, consts2, consts3 } }; in jsimd_idct_islow_pass1_regular()
489 const int16x4_t consts2 = vld1_s16(jsimd_idct_islow_neon_consts + 4); in jsimd_idct_islow_pass1_sparse()
491 const int16x4x3_t consts = { { consts1, consts2, consts3 } }; in jsimd_idct_islow_pass1_sparse()
573 const int16x4_t consts2 = vld1_s16(jsimd_idct_islow_neon_consts + 4); in jsimd_idct_islow_pass2_regular()
575 const int16x4x3_t consts = { { consts1, consts2, consts3 } }; in jsimd_idct_islow_pass2_regular()
720 const int16x4_t consts2 = vld1_s16(jsimd_idct_islow_neon_consts + 4); in jsimd_idct_islow_pass2_sparse()
722 const int16x4x3_t consts = { { consts1, consts2, consts3 } }; in jsimd_idct_islow_pass2_sparse()
Djfdctint-neon.c95 const int16x4_t consts2 = vld1_s16(jsimd_fdct_islow_neon_consts + 4); in jsimd_fdct_islow_neon()
97 const int16x4x3_t consts = { { consts1, consts2, consts3 } }; in jsimd_fdct_islow_neon()
Djidctred-neon.c231 const int16x4_t consts2 = vld1_s16(jsimd_idct_4x4_neon_consts + 4); in jsimd_idct_4x4_neon() local
233 const int16x4x3_t consts = { { consts1, consts2, consts3 } }; in jsimd_idct_4x4_neon()
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/aarch32/
Djccolext-neon.c64 const uint16x4_t consts2 = vld1_u16(jsimd_rgb_ycc_neon_consts + 4); in jsimd_rgb_ycc_convert_neon() local
65 const uint16x4x2_t consts = { { consts1, consts2 } }; in jsimd_rgb_ycc_convert_neon()
/third_party/python/Objects/
Dcodeobject.c918 PyObject *consts1, *consts2; in code_richcompare() local
951 consts2 = _PyCode_ConstantKey(cp->co_consts); in code_richcompare()
952 if (!consts2) { in code_richcompare()
956 eq = PyObject_RichCompareBool(consts1, consts2, Py_EQ); in code_richcompare()
958 Py_DECREF(consts2); in code_richcompare()