Searched refs:is_big (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | dpx.c | 63 static unsigned int read16(const uint8_t **ptr, int is_big) in read16() argument 66 if (is_big) { in read16() 75 static unsigned int read32(const uint8_t **ptr, int is_big) in read32() argument 78 if (is_big) { in read32() 88 int *n_datum, int is_big, int shift) in read10in32_gray() argument 95 *lbuf = read32(ptr, is_big); in read10in32_gray() 106 int *n_datum, int is_big, int shift) in read10in32() argument 111 *lbuf = read32(ptr, is_big); in read10in32() 121 int *n_datum, int is_big) in read12in32() argument 126 *lbuf = read32(ptr, is_big); in read12in32() [all …]
|
/third_party/glib/glib/ |
D | ghash.c | 377 g_hash_table_realloc_key_or_value_array (gpointer a, guint size, G_GNUC_UNUSED gboolean is_big) in g_hash_table_realloc_key_or_value_array() argument 380 return g_realloc (a, size * (is_big ? BIG_ENTRY_SIZE : SMALL_ENTRY_SIZE)); in g_hash_table_realloc_key_or_value_array() 387 g_hash_table_fetch_key_or_value (gpointer a, guint index, gboolean is_big) in g_hash_table_fetch_key_or_value() argument 390 is_big = TRUE; in g_hash_table_fetch_key_or_value() 392 return is_big ? *(((gpointer *) a) + index) : GUINT_TO_POINTER (*(((guint *) a) + index)); in g_hash_table_fetch_key_or_value() 396 g_hash_table_assign_key_or_value (gpointer a, guint index, gboolean is_big, gpointer v) in g_hash_table_assign_key_or_value() argument 399 is_big = TRUE; in g_hash_table_assign_key_or_value() 401 if (is_big) in g_hash_table_assign_key_or_value() 408 g_hash_table_evict_key_or_value (gpointer a, guint index, gboolean is_big, gpointer v) in g_hash_table_evict_key_or_value() argument 411 is_big = TRUE; in g_hash_table_evict_key_or_value() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | img2dec.c | 716 int is_big = (AV_RN32(b) == AV_RN32("SDPX")); in dpx_probe() local 720 w = is_big ? AV_RB32(p->buf + 0x304) : AV_RL32(p->buf + 0x304); in dpx_probe() 721 h = is_big ? AV_RB32(p->buf + 0x308) : AV_RL32(p->buf + 0x308); in dpx_probe() 725 if (is_big || AV_RN32(b) == AV_RN32("XPDS")) in dpx_probe()
|
/third_party/boost/libs/endian/test/ |
D | endian_test.cpp | 91 void verify_representation( bool is_big, int line ) in verify_representation() argument 97 if ( is_big ) in verify_representation()
|
/third_party/glib/glib/tests/ |
D | hash.c | 1401 fetch_key_or_value (gpointer a, guint index, gboolean is_big) in fetch_key_or_value() argument 1404 return is_big ? *(((gpointer *) a) + index) : GUINT_TO_POINTER (*(((guint *) a) + index)); in fetch_key_or_value()
|