Searched refs:a_count (Results 1 – 6 of 6) 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 | 26 +static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT… 32 +static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_IN… 37 +static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OP… 70 +#define OVERFLOW_S(i) (IDX_S(i) >= a_count) 71 +#define OVERFLOW_D(i) (IDX_D(i) >= a_count) 88 +static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT… 97 +static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_IN… 113 +static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OP…
|
D | dwt.c | 108 static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT3… 113 static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT… 117 static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ… 161 #define OVERFLOW_S(i) (IDX_S(i) >= a_count) 162 #define OVERFLOW_D(i) (IDX_D(i) >= a_count) 291 static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT3… in opj_dwt_encode_1() argument 312 static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT… in opj_dwt_decode_1_() argument 340 static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ… in opj_dwt_encode_1_real() argument
|
/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) {
|