Home
last modified time | relevance | path

Searched refs:TABLE_SIZE (Results 1 – 15 of 15) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmlz.c24 mlz->dict = av_mallocz_array(TABLE_SIZE, sizeof(*mlz->dict)); in ff_mlz_init_dict()
38 for ( i = 0; i < TABLE_SIZE; i++ ) { in ff_mlz_flush_dict()
169 if (mlz->next_code >= TABLE_SIZE - 1) { in ff_mlz_decompression()
184 if (mlz->next_code >= TABLE_SIZE - 1) { in ff_mlz_decompression()
Dmlz.h34 #define TABLE_SIZE 35023 // TABLE_SIZE must be a prime number macro
/third_party/openssl/crypto/bn/
Dbn_exp2.c14 #define TABLE_SIZE 32 macro
26 BIGNUM *val1[TABLE_SIZE], *val2[TABLE_SIZE]; in BN_mod_exp2_mont()
Dbn_exp.c38 #define TABLE_SIZE 32 macro
168 BIGNUM *val[TABLE_SIZE]; in BN_mod_exp_recp()
304 BIGNUM *val[TABLE_SIZE]; in BN_mod_exp_mont()
1284 BIGNUM *val[TABLE_SIZE]; in BN_mod_exp_simple()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/
DBidiFmwk.java167 private static final int TABLE_SIZE = 256; field in BidiFmwk
204 pseudoToUChar = new char[TABLE_SIZE]; in buildPseudoTables()
205 UCharToPseudo = new char[TABLE_SIZE]; in buildPseudoTables()
206 UCharToPseud2 = new char[TABLE_SIZE]; in buildPseudoTables()
207 for (i = 0; i < TABLE_SIZE; i++) { in buildPseudoTables()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DBidiFmwk.java164 private static final int TABLE_SIZE = 256; field in BidiFmwk
201 pseudoToUChar = new char[TABLE_SIZE]; in buildPseudoTables()
202 UCharToPseudo = new char[TABLE_SIZE]; in buildPseudoTables()
203 UCharToPseud2 = new char[TABLE_SIZE]; in buildPseudoTables()
204 for (i = 0; i < TABLE_SIZE; i++) { in buildPseudoTables()
/third_party/flutter/skia/third_party/externals/sdl/Xcode-iOS/Demos/src/
Dkeyboard.c37 #define TABLE_SIZE 51 /* size of our table which maps keys and modifiers to font indices … macro
45 fontMapping map[TABLE_SIZE] = {
113 for (i = 0; i < TABLE_SIZE; i++) { in keyToIndex()
/third_party/python/Objects/stringlib/
Dfastsearch.h294 #define TABLE_SIZE (1U << TABLE_SIZE_BITS) macro
295 #define TABLE_MASK (TABLE_SIZE - 1U)
303 SHIFT_TYPE table[TABLE_SIZE];
327 memset(&(p->table[0]), 0xff, TABLE_SIZE*sizeof(SHIFT_TYPE)); in STRINGLIB()
510 #undef TABLE_SIZE
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Djccolor.c85 #define TABLE_SIZE (8 * (MAXJSAMPLE + 1)) macro
207 (TABLE_SIZE * sizeof(JLONG))); in rgb_ycc_start()
Djdcolor.c90 #define TABLE_SIZE (3 * (MAXJSAMPLE + 1)) macro
311 (TABLE_SIZE * sizeof(JLONG))); in build_rgb_y_table()
/third_party/libjpeg-turbo/
Djccolor.c85 #define TABLE_SIZE (8 * (MAXJSAMPLE + 1)) macro
207 (TABLE_SIZE * sizeof(JLONG))); in rgb_ycc_start()
Djdcolor.c90 #define TABLE_SIZE (3 * (MAXJSAMPLE + 1)) macro
311 (TABLE_SIZE * sizeof(JLONG))); in build_rgb_y_table()
/third_party/skia/third_party/externals/libjpeg-turbo/
Djccolor.c85 #define TABLE_SIZE (8 * (MAXJSAMPLE + 1)) macro
207 (TABLE_SIZE * sizeof(JLONG))); in rgb_ycc_start()
Djdcolor.c90 #define TABLE_SIZE (3 * (MAXJSAMPLE + 1)) macro
311 (TABLE_SIZE * sizeof(JLONG))); in build_rgb_y_table()
/third_party/icu/icu4c/source/test/cintltst/
Dcbiditst.c243 #define TABLE_SIZE 256 macro
245 static UChar pseudoToUChar[TABLE_SIZE];
246 static uint8_t UCharToPseudo[TABLE_SIZE]; /* used for Unicode chars < 0x0100 */
247 static uint8_t UCharToPseud2[TABLE_SIZE]; /* used for Unicode chars >=0x0100 */
279 for (i=0; i < TABLE_SIZE; i++) { in buildPseudoTables()