/external/libffi/src/pa/ |
D | ffi.c | 140 void ffi_prep_args_pa32(UINT32 *stack, extended_cif *ecif, unsigned bytes) in ffi_prep_args_pa32() 166 *(UINT32 *)(stack - slot) = *(UINT8 *)(*p_argv); in ffi_prep_args_pa32() 174 *(UINT32 *)(stack - slot) = *(UINT16 *)(*p_argv); in ffi_prep_args_pa32() 180 debug(3, "Storing UINT32 %u in slot %u\n", *(UINT32 *)(*p_argv), in ffi_prep_args_pa32() 182 *(UINT32 *)(stack - slot) = *(UINT32 *)(*p_argv); in ffi_prep_args_pa32() 195 *(UINT32 *)(stack - slot) = *(UINT32 *)(*p_argv); in ffi_prep_args_pa32() 223 *(UINT32 *)(stack - slot) = (UINT32)(*p_argv); in ffi_prep_args_pa32() 246 *(UINT32 *)(stack - slot) = (UINT32)(*p_argv); in ffi_prep_args_pa32() 311 cif->bytes = 64 + ROUND_UP((z - 6) * sizeof(UINT32), MIN_STACK_SIZE); in ffi_size_stack_pa32() 370 extern void ffi_call_pa32(void (*)(UINT32 *, extended_cif *, unsigned), [all …]
|
/external/libvpx/vp8/common/ |
D | preprocif.h | 38 UINT32 frag_info_element_size; // size of each element 39 UINT32 frag_info_coded_mask; // mask to get at whether fragment is coded 41 UINT32 *region_index; // Gives pixel index for top left of each block 42 UINT32 video_frame_height; 43 UINT32 video_frame_width; 70 extern void set_scan_param(x_pp_inst ppi, UINT32 param_id, INT32 param_value); 71 extern UINT32 yuvanalyse_frame(x_pp_inst ppi, UINT32 *KFIndicator);
|
/external/libffi/src/sh64/ |
D | ffi.c | 48 else if (arg->size <= sizeof (UINT32)) in return_type() 87 if (z < sizeof (UINT32)) in ffi_prep_args() 116 else if (z == sizeof (UINT32) && align == sizeof (UINT32)) in ffi_prep_args() 129 *(UINT64 *) argp = (UINT64) *(UINT32 *) (*p_argv); in ffi_prep_args() 321 tramp[2] = 0xcc000010 | (((UINT32) ffi_closure_SYSV) >> 16) << 10; in ffi_prep_closure() 322 tramp[3] = 0xc8000010 | (((UINT32) ffi_closure_SYSV) & 0xffff) << 10; in ffi_prep_closure() 324 tramp[5] = 0xcc000010 | (((UINT32) closure) >> 16) << 10; in ffi_prep_closure() 325 tramp[6] = 0xc8000010 | (((UINT32) closure) & 0xffff) << 10; in ffi_prep_closure() 380 if (z < sizeof (UINT32)) in ffi_closure_helper_SYSV() 394 avalue[i] = ((char *) p) + sizeof (UINT32) - z; in ffi_closure_helper_SYSV() [all …]
|
/external/clearsilver/util/ |
D | neo_misc.c | 72 UINT32 python_string_hash (const char *s) in python_string_hash() 75 register UINT32 x; in python_string_hash() 88 UINT8 *ne_stream4 (UINT8 *dest, UINT32 num) in ne_stream4() 106 UINT8 *ne_unstream4 (UINT32 *pnum, UINT8 *src) in ne_unstream4() 169 static const UINT32 CRCTable[256] = { 215 UINT32 ne_crc (UINT8 *data, UINT32 bytes) in ne_crc() 217 UINT32 crc, i; in ne_crc() 219 crc = (UINT32)-1; in ne_crc()
|
D | skiplist.c | 32 UINT32 locks; /* count of locks on value */ 33 UINT32 key; /* item's key */ 50 UINT32 cached; /* number of cached deleted items */ 53 UINT32 readers; /* number of current readers */ 63 UINT32 flushLimit; /* max number of cached deleted items before flush */ 150 static NEOERR *skipAllocItem(skipItem *item, UINT32 level, UINT32 key, in skipAllocItem() 239 static skipItem skipFind(skipList list, UINT32 key) { in skipFind() 264 void *skipSearch(skipList list, UINT32 key, void **plock) { in skipSearch() 284 void *skipNext(skipList list, UINT32 *pkey, void **plock) { in skipNext() 323 static NEOERR *skipNewItem(skipList list, skipItem *item, UINT32 key, in skipNewItem() [all …]
|
D | neo_hash.h | 20 typedef UINT32 (*NE_HASH_FUNC)(const void *); 27 UINT32 hashv; 33 UINT32 size; 34 UINT32 num; 50 UINT32 ne_hash_str_hash(const void *a); 53 UINT32 ne_hash_int_hash(const void *a);
|
D | neo_misc.h | 97 typedef unsigned int UINT32; typedef 122 UINT32 python_string_hash (const char *s); 123 UINT8 *ne_stream4 (UINT8 *dest, UINT32 num); 124 UINT8 *ne_unstream4 (UINT32 *pnum, UINT8 *src); 130 UINT32 ne_crc (UINT8 *data, UINT32 bytes);
|
D | neo_hash.c | 22 static NE_HASHNODE **_hash_lookup_node (NE_HASH *hash, void *key, UINT32 *hashv); 78 UINT32 hashv; in ne_hash_insert() 142 UINT32 hashv, bucket; in ne_hash_next() 186 static NE_HASHNODE **_hash_lookup_node (NE_HASH *hash, void *key, UINT32 *o_hashv) in _hash_lookup_node() 188 UINT32 hashv, bucket; in _hash_lookup_node() 221 UINT32 hash_mask; in _hash_resize() 279 UINT32 ne_hash_str_hash(const void *a) in ne_hash_str_hash() 290 UINT32 ne_hash_int_hash(const void *a) in ne_hash_int_hash() 292 return (UINT32)(long)(a); in ne_hash_int_hash()
|
D | dict.c | 51 typedef UINT32 (*dictHashFunc)(const char *str); 219 static NEOERR *dictInsert(dictCtx dict, UINT32 hash, const char *id, in dictInsert() 257 static UINT32 dictHash(dictCtx dict, const char *id) { in dictHash() 259 UINT32 hash; in dictHash() 264 if(! (hash && (hash != (UINT32)-1))) in dictHash() 273 UINT32 hash; in dictModify() 338 UINT32 key = 0; in dictCleanup() 381 UINT32 hash; in dictSearch() 416 UINT32 hash; in dictNext() 510 UINT32 hash; in dictRemove() [all …]
|
D | skiplist.h | 80 void *skipNext(skipList list, UINT32 *pkey, void **plock); 99 void *skipSearch(skipList list, UINT32 key, void **plock); 129 NEOERR *skipInsert(skipList list, UINT32 key, void *value, int allowUpdate); 146 void skipDelete(skipList list, UINT32 key);
|
D | dict.h | 23 NEOERR *dictCreate(dictCtx *dict, BOOL threaded, UINT32 root, UINT32 maxLevel, 24 UINT32 flushLimit, BOOL useCase,
|
/external/dbus/test/data/valid-messages/ |
D | array-of-array-of-uint32.message | 11 TYPE UINT32 19 UINT32 1 20 UINT32 2 21 UINT32 3 27 UINT32 4 28 UINT32 5
|
D | lots-of-arguments.message | 13 TYPE UINT32 14 UINT32 0x8765432 26 TYPE UINT32 49 TYPE UINT32 50 UINT32 0x8765432 59 TYPE UINT32 60 UINT32 0x8765432
|
D | dict.message | 18 TYPE UINT32 19 UINT32 0x8765432 36 TYPE UINT32
|
/external/dbus/test/data/invalid-messages/ |
D | array-with-mixed-types.message | 23 TYPE UINT32 31 UINT32 1 32 UINT32 2 33 UINT32 3 39 UINT32 4 40 UINT32 5
|
/external/jpeg/ |
D | jccolor.c | 305 typedef unsigned long UINT32; typedef 319 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4) in copyquads() 322 UINT32 src0 = *in++; in copyquads() 323 UINT32 src1 = *in++; in copyquads() 324 UINT32 src2 = *in++; in copyquads() 364 const UINT32* in = (const UINT32*)inptr; in null_convert() 365 UINT32* out0 = (UINT32*)outptr0; in null_convert() 366 UINT32* out1 = (UINT32*)outptr1; in null_convert() 367 UINT32* out2 = (UINT32*)outptr2; in null_convert()
|
/external/dhcpcd/ |
D | showlease.c | 13 #define UINT32 (1 << 4) macro 31 { 2, UINT32, "time_offset" }, 53 { 24, UINT32, "path_mtu_aging_timeout" }, 64 { 35, UINT32, "arp_cache_timeout" }, 67 { 38, UINT32, "tcp_keepalive_interval" }, 80 { 51, UINT32 | REQUEST, "dhcp_lease_time" }, 87 { 58, UINT32 | REQUEST, "dhcp_renewal_time" }, 88 { 59, UINT32 | REQUEST, "dhcp_rebinding_time" }, 108 { 91, UINT32, "client_last_transaction_time" }, 164 if (opt->type & UINT32 || opt->type & IPV4) in valid_length()
|
/external/dnsmasq/dbus/ |
D | DBus-interface | 46 represented as a UINT32 (in network byte order) and IPv6 addresses 53 UINT32: <address1> 61 UINT32 <address1> 62 UINT32 <address2> 69 UINT32 <address1> 70 UINT32 <address2> 72 UINT32 <address3> 85 UINT32: <0.0.0.0>
|
/external/giflib/ |
D | gif_hash.h | 51 UINT32 HTable[HT_SIZE]; 56 void _InsertHashTable(GifHashTableType *HashTable, UINT32 Key, int Code); 57 int _ExistsHashTable(GifHashTableType *HashTable, UINT32 Key);
|
/external/libvpx/vpx_scale/dm642/ |
D | yv12extend.c | 32 #define UINT32 unsigned int macro 41 UINT32 plane_height, in copy_yleft_right_border() 42 UINT32 plane_stride in copy_yleft_right_border() 45 UINT32 left, right, left2, left4, right2, right4; in copy_yleft_right_border() 100 UINT32 plane_height, in copy_uvleft_right_border() 101 UINT32 plane_stride in copy_uvleft_right_border() 104 UINT32 left, right, left2, left4, right2, right4; in copy_uvleft_right_border()
|
/external/libffi/src/ |
D | java_raw_api.c | 158 *(UINT32*)(raw++) = *(UINT8*) (*args); in ffi_java_ptrarray_to_raw() 174 *(UINT32*)(raw++) = *(UINT16*) (*args); in ffi_java_ptrarray_to_raw() 190 *(UINT32*)(raw++) = *(UINT32*) (*args); in ffi_java_ptrarray_to_raw() 192 (raw++)->uint = *(UINT32*) (*args); in ffi_java_ptrarray_to_raw()
|
/external/libvpx/vpx_scale/symbian/ |
D | gen_scalers_armv4.asm | 53 ; r1 = UINT32 source_width 55 ; r3 = UINT32 dest_width 157 ; r1 = UINT32 dest_pitch 158 ; r2 = UINT32 dest_width 297 ; r1 = UINT32 dest_pitch 298 ; r2 = UINT32 dest_width 451 ; r1 = UINT32 dest_pitch 452 ; r2 = UINT32 dest_width 608 ; r1 = UINT32 dest_pitch 609 ; r2 = UINT32 dest_width [all …]
|
D | gen_scalers_armv4.s | 79 @ r1 = UINT32 source_width 81 @ r3 = UINT32 dest_width 184 @ r1 = UINT32 dest_pitch 185 @ r2 = UINT32 dest_width 326 @ r1 = UINT32 dest_pitch 327 @ r2 = UINT32 dest_width 482 @ r1 = UINT32 dest_pitch 483 @ r2 = UINT32 dest_width 641 @ r1 = UINT32 dest_pitch 642 @ r2 = UINT32 dest_width [all …]
|
/external/libvpx/vpx_scale/arm/armv4/ |
D | gen_scalers_armv4.asm | 53 ; r1 = UINT32 source_width 55 ; r3 = UINT32 dest_width 157 ; r1 = UINT32 dest_pitch 158 ; r2 = UINT32 dest_width 297 ; r1 = UINT32 dest_pitch 298 ; r2 = UINT32 dest_width 451 ; r1 = UINT32 dest_pitch 452 ; r2 = UINT32 dest_width 608 ; r1 = UINT32 dest_pitch 609 ; r2 = UINT32 dest_width [all …]
|
/external/libvpx/vpx_scale/wce/ |
D | gen_scalers_armv4.asm | 53 ; r1 = UINT32 source_width 55 ; r3 = UINT32 dest_width 157 ; r1 = UINT32 dest_pitch 158 ; r2 = UINT32 dest_width 297 ; r1 = UINT32 dest_pitch 298 ; r2 = UINT32 dest_width 451 ; r1 = UINT32 dest_pitch 452 ; r2 = UINT32 dest_width 608 ; r1 = UINT32 dest_pitch 609 ; r2 = UINT32 dest_width [all …]
|