Searched refs:HASH_SIZE (Results 1 – 10 of 10) sorted by relevance
/third_party/ffmpeg/libavformat/tests/ |
D | movenc.c | 37 #define HASH_SIZE 16 macro 57 uint8_t hash[HASH_SIZE]; 156 for (i = 0; i < HASH_SIZE; i++) in close_out() 362 uint8_t header[HASH_SIZE]; in main() 363 uint8_t content[HASH_SIZE]; in main() 437 memcpy(content, hash, HASH_SIZE); in main() 474 check(!memcmp(hash, content, HASH_SIZE), "delay_moov differs from empty_moov"); in main() 524 memcpy(header, hash, HASH_SIZE); in main() 538 memcpy(content, hash, HASH_SIZE); in main() 550 check(!memcmp(hash, header, HASH_SIZE), "delay_moov header differs from empty_moov"); in main() [all …]
|
/third_party/libdrm/ |
D | xf86drmHash.h | 27 #define HASH_SIZE 512 /* Good for about 100 entries */ macro 44 HashBucketPtr buckets[HASH_SIZE];
|
D | xf86drmHash.c | 101 hash %= HASH_SIZE; in HashHash() 125 for (i = 0; i < HASH_SIZE; i++) { in drmHashDestroy() 220 while (table->p0 < HASH_SIZE) { in drmHashNext()
|
/third_party/pixman/pixman/ |
D | pixman-glyph.c | 43 #define HASH_SIZE (2 * N_GLYPHS_HIGH_WATER) macro 44 #define HASH_MASK (HASH_SIZE - 1) 62 glyph_t * glyphs[HASH_SIZE]; 171 for (i = 0; i < HASH_SIZE; ++i) in clear_table() 268 if (cache->n_glyphs >= HASH_SIZE) in pixman_glyph_cache_insert()
|
/third_party/quickjs/ |
D | jscompress.c | 661 #define HASH_SIZE 30011 macro 700 hash_table = malloc(sizeof(hash_table[0]) * HASH_SIZE); in lz_compress() 701 for(i = 0; i < HASH_SIZE; i++) in lz_compress() 708 h = ((src[i] << 16) | (src[i + 1] << 8) | src[i + 2]) % HASH_SIZE; in lz_compress()
|
/third_party/libdrm/tests/ |
D | hash.c | 112 for (i = 0; i < HASH_SIZE; i++) { in compute_dist()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | backward_references_enc.h | 110 #define HASH_SIZE (1 << HASH_BITS) macro
|
D | backward_references_enc.c | 278 (int32_t*)WebPSafeMalloc(HASH_SIZE, sizeof(*hash_to_first_index)); in VP8LHashChainFill() 282 memset(hash_to_first_index, 0xff, HASH_SIZE * sizeof(*hash_to_first_index)); in VP8LHashChainFill()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/ |
D | backward_references_enc.h | 109 #define HASH_SIZE (1 << HASH_BITS) macro
|
D | backward_references_enc.c | 247 (int32_t*)WebPSafeMalloc(HASH_SIZE, sizeof(*hash_to_first_index)); in VP8LHashChainFill() 251 memset(hash_to_first_index, 0xff, HASH_SIZE * sizeof(*hash_to_first_index)); in VP8LHashChainFill()
|