Home
last modified time | relevance | path

Searched refs:x_size (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Objects/
Dlongobject.c2218 Py_ssize_t a_size, a_bits, shift_digits, shift_bits, x_size; in _PyLong_Frexp() local
2270 x_size = 0; in _PyLong_Frexp()
2271 while (x_size < shift_digits) in _PyLong_Frexp()
2272 x_digits[x_size++] = 0; in _PyLong_Frexp()
2273 rem = v_lshift(x_digits + x_size, a->ob_digit, a_size, in _PyLong_Frexp()
2275 x_size += a_size; in _PyLong_Frexp()
2276 x_digits[x_size++] = rem; in _PyLong_Frexp()
2283 x_size = a_size - shift_digits; in _PyLong_Frexp()
2297 assert(1 <= x_size && in _PyLong_Frexp()
2298 x_size <= (Py_ssize_t)(sizeof(x_digits)/sizeof(digit))); in _PyLong_Frexp()
[all …]
/external/libtextclassifier/common/
Dembedding-network.cc104 const int x_size = x.size(); in SparseReluProductPlusBias() local
105 for (int i = 0; i < x_size; ++i) { in SparseReluProductPlusBias()
/external/swiftshader/third_party/LLVM/test/CodeGen/Thumb2/
D2009-12-01-LoopIVUsers.ll4 define void @fred(i32 %three_by_three, i8* %in, double %dt1, i32 %x_size, i32 %y_size, i8* %bp) nou…
43 store i32 %x_size, i32* %x_size_addr
/external/llvm/test/CodeGen/Thumb2/
D2009-12-01-LoopIVUsers.ll6 define void @fred(i32 %three_by_three, i8* %in, double %dt1, i32 %x_size, i32 %y_size, i8* %bp) nou…
44 store i32 %x_size, i32* %x_size_addr
/external/kernel-headers/original/uapi/linux/
Dcoff.h276 char x_size[2]; /* str/union/array size */ member
/external/ImageMagick/coders/
Ddpx.c255 x_size, member
885 dpx.orientation.x_size=ReadBlobLong(image); in ReadDPXImage()
887 if (dpx.orientation.x_size != ~0U) in ReadDPXImage()
889 dpx.orientation.x_size); in ReadDPXImage()
1718 dpx.orientation.x_size=0U; in WriteDPXImage()
1721 dpx.orientation.x_size=(unsigned int) StringToUnsignedLong(value); in WriteDPXImage()
1722 offset+=WriteBlobLong(image,dpx.orientation.x_size); in WriteDPXImage()