Searched refs:a_count (Results 1 – 8 of 8) sorted by relevance
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/ |
D | LZWEncoder.java | 107 int a_count; field in LZWEncoder 123 accum[a_count++] = c; in char_out() 124 if (a_count >= 254) in char_out() 166 a_count = 0; // clear packet in compress() 230 if (a_count > 0) { in flush_char() 231 outs.write(a_count); in flush_char() 232 outs.write(accum, 0, a_count); in flush_char() 233 a_count = 0; in flush_char()
|
/external/gemmlowp/test/ |
D | test_data.cc | 31 extern const int a_count = (m * k); 35 unsigned char a_data[a_count] = {
|
D | test_data.h | 33 extern const int a_count;
|
/external/pdfium/third_party/libopenjpeg20/ |
D | 0003-dwt-decode.patch | 28 +static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, 35 +static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, 71 +#define OVERFLOW_S(i) (IDX_S(i) >= a_count) 72 +#define OVERFLOW_D(i) (IDX_D(i) >= a_count) 92 +static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, 103 +static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, 123 +static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, 223 +static void opj_dwt_decode_partial_1(OPJ_INT32 *a, OPJ_SIZE_T a_count,
|
D | dwt.c | 134 static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, 139 static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, 212 #define OVERFLOW_S(i) (IDX_S(i) >= a_count) 213 #define OVERFLOW_D(i) (IDX_D(i) >= a_count) 354 static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, in opj_dwt_encode_1() argument 386 static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, in opj_dwt_decode_1_() argument 1047 static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, in opj_dwt_encode_1_real() argument 1606 static void opj_dwt_decode_partial_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, in opj_dwt_decode_partial_1() argument
|
/external/grpc-grpc/src/core/lib/slice/ |
D | slice_buffer.cc | 195 size_t a_count = a->count + a_offset; in grpc_slice_buffer_swap() local 202 memcpy(temp, a->base_slices, a_count * sizeof(grpc_slice)); in grpc_slice_buffer_swap() 204 memcpy(b->base_slices, temp, a_count * sizeof(grpc_slice)); in grpc_slice_buffer_swap() 209 memcpy(b->base_slices, a->inlined, a_count * sizeof(grpc_slice)); in grpc_slice_buffer_swap()
|
/external/python/cpython3/Python/ |
D | hamt.c | 316 Py_ssize_t a_count; member 385 assert(count == node->a_count); in _hamt_node_array_validate() 1655 node->a_count = count; in hamt_node_array_new() 1670 clone = (PyHamtNode_Array *)hamt_node_array_new(node->a_count); in hamt_node_array_clone() 1726 new_node = (PyHamtNode_Array *)hamt_node_array_new(self->a_count + 1); in hamt_node_array_assoc() 1815 Py_ssize_t new_count = self->a_count - 1; in hamt_node_array_without() 1833 new->a_count = new_count; in hamt_node_array_without() 1904 assert(((PyHamtNode_Array*)node)->a_count >= 16); in hamt_node_array_without()
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-matchers.h | 2530 ElementsAreMatcherImpl(InputIter first, size_t a_count) { 2531 matchers_.reserve(a_count); 2533 for (size_t i = 0; i != a_count; ++i, ++it) {
|