Searched refs:a_count (Results 1 - 5 of 5) sorted by relevance

/external/gemmlowp/test/
H A Dtest_data.cc17 extern const int a_count = (m * k); member in namespace:test_data
21 unsigned char a_data[a_count] = {
[all...]
H A Dtest_data.h19 extern const int a_count;
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
H A DLZWEncoder.java107 int a_count; field in class:LZWEncoder
123 accum[a_count++] = c;
124 if (a_count >= 254)
166 a_count = 0; // clear packet
230 if (a_count > 0) {
231 outs.write(a_count);
232 outs.write(accum, 0, a_count);
233 a_count = 0;
/external/pdfium/third_party/libopenjpeg20/
H A Ddwt.c108 static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas);
113 static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas);
117 static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas);
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_INT32 cas) { argument
312 static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas) { argument
340 static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas) { argument
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h2530 ElementsAreMatcherImpl(InputIter first, size_t a_count) { argument
2531 matchers_.reserve(a_count);
2533 for (size_t i = 0; i != a_count; ++i, ++it) {

Completed in 209 milliseconds