/system/core/libsparse/ |
H A D | sparse_crc32.h | 19 uint32_t sparse_crc32(uint32_t crc, const void *buf, size_t size);
|
/system/core/include/utils/ |
H A D | JenkinsHash.h | 32 inline uint32_t JenkinsHashMix(uint32_t hash, uint32_t data) { 39 hash_t JenkinsHashWhiten(uint32_t hash); 42 uint32_t JenkinsHashMixBytes(uint32_t hash, const uint8_t* bytes, size_t size); 44 uint32_t JenkinsHashMixShorts(uint32_t hash, const uint16_t* shorts, size_t size);
|
H A D | BitSet.h | 31 uint32_t value; 34 explicit inline BitSet32(uint32_t value) : value(value) { } 37 static inline uint32_t valueForBit(uint32_t n) { return 0x80000000 >> n; } 43 inline uint32_t count() const { return __builtin_popcount(value); } 52 inline bool hasBit(uint32_t n) const { return value & valueForBit(n); } 55 inline void markBit(uint32_t n) { value |= valueForBit(n); } 58 inline void clearBit(uint32_t n) { value &= ~ valueForBit(n); } 62 inline uint32_t firstMarkedBit() const { return __builtin_clz(value); } 66 inline uint32_t firstUnmarkedBi [all...] |
/system/core/include/corkscrew/ |
H A D | ptrace.h | 48 uint32_t ebx; 49 uint32_t ecx; 50 uint32_t edx; 51 uint32_t esi; 52 uint32_t edi; 53 uint32_t ebp; 54 uint32_t eax; 55 uint32_t xds; 56 uint32_t xes; 57 uint32_t xf [all...] |
/system/core/include/mincrypt/ |
H A D | rsa.h | 38 #define RSANUMWORDS (RSANUMBYTES / sizeof(uint32_t)) 41 int len; /* Length of n[] in number of uint32_t */ 42 uint32_t n0inv; /* -1 / n[0] mod 2^32 */ 43 uint32_t n[RSANUMWORDS]; /* modulus as little endian array */ 44 uint32_t rr[RSANUMWORDS]; /* R^2 as little endian array */
|
/system/core/libnetutils/ |
H A D | packet.h | 22 uint32_t saddr, uint32_t daddr, uint32_t sport, uint32_t dport);
|
H A D | dhcpmsg.h | 42 uint32_t xid; /* transaction id */ 47 uint32_t ciaddr; /* client IP addr */ 48 uint32_t yiaddr; /* your (client) IP addr */ 49 uint32_t siaddr; /* ip addr of next server */ 51 uint32_t giaddr; /* relay agent IP addr */ 101 int init_dhcp_discover_msg(dhcp_msg *msg, void *hwaddr, uint32_t xid); 103 int init_dhcp_request_msg(dhcp_msg *msg, void *hwaddr, uint32_t xid, 104 uint32_t ipaddr, uint32_t serveraddr);
|
/system/core/libcutils/arch-mips/ |
H A D | android_memset.c | 21 void _memset32(uint32_t* dst, uint32_t value, size_t size); 28 void android_memset32(uint32_t* dst, uint32_t value, size_t size)
|
/system/extras/ext4_utils/ |
H A D | sha1.h | 17 typedef unsigned int uint32_t; typedef 31 uint32_t state[5]; 32 uint32_t count[2]; 37 void SHA1Transform(uint32_t[5], const u_char[64]);
|
/system/core/libpixelflinger/codeflinger/ |
H A D | ARMAssembler.h | 41 uint32_t* base() const; 42 uint32_t* pc() const; 57 virtual void epilog(uint32_t touched); 66 virtual bool isValidImmediate(uint32_t immed); 67 virtual int buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm); 69 virtual uint32_t imm(uint32_t immediate); 70 virtual uint32_t reg_im [all...] |
H A D | ARMAssemblerInterface.cpp | 43 uint32_t ARMAssemblerInterface::__immed12_pre(int32_t immed12, int W) 48 return (1<<24) | (((uint32_t(immed12)>>31)^1)<<23) | 52 uint32_t ARMAssemblerInterface::__immed8_pre(int32_t immed8, int W) 54 uint32_t offset = abs(immed8); 60 return (1<<24) | (1<<22) | (((uint32_t(immed8)>>31)^1)<<23) |
|
H A D | ARMAssemblerProxy.h | 48 virtual void epilog(uint32_t touched); 55 virtual bool isValidImmediate(uint32_t immed); 56 virtual int buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm); 58 virtual uint32_t imm(uint32_t immediate); 59 virtual uint32_t reg_imm(int Rm, int type, uint32_t shift); 60 virtual uint32_t reg_rr [all...] |
H A D | mips_disassem.h | 60 void mips_disassem(uint32_t *location, char *di_buffer, int alt_fmt);
|
/system/core/libutils/ |
H A D | JenkinsHash.cpp | 26 hash_t JenkinsHashWhiten(uint32_t hash) { 33 uint32_t JenkinsHashMixBytes(uint32_t hash, const uint8_t* bytes, size_t size) { 34 hash = JenkinsHashMix(hash, (uint32_t)size); 37 uint32_t data = bytes[i] | (bytes[i+1] << 8) | (bytes[i+2] << 16) | (bytes[i+3] << 24); 41 uint32_t data = bytes[i]; 49 uint32_t JenkinsHashMixShorts(uint32_t hash, const uint16_t* shorts, size_t size) { 50 hash = JenkinsHashMix(hash, (uint32_t)size); 53 uint32_t dat [all...] |
/system/extras/ksmutils/ |
H A D | lookup3.c | 41 #include <stdint.h> /* defines uint32_t etc */ 67 #define hashsize(n) ((uint32_t)1<<(n)) 164 -- that the key be an array of uint32_t's, and 165 -- that the length be the number of uint32_t's in the key 174 uint32_t hashword( 175 const uint32_t *k, /* the key, an array of uint32_t values */ 177 uint32_t initval) /* the previous hash, or an arbitrary value */ 179 uint32_t a,b,c; 182 a = b = c = 0xdeadbeef + (((uint32_t)lengt [all...] |
/system/core/include/private/pixelflinger/ |
H A D | ggl_context.h | 35 inline uint32_t GGL_RGBA_TO_HOST(uint32_t v) { 38 inline uint32_t GGL_HOST_TO_RGBA(uint32_t v) { 44 inline uint32_t GGL_RGBA_TO_HOST(uint32_t v) { 46 uint32_t r; 57 inline uint32_t GGL_HOST_TO_RGBA(uint32_t v) { 59 uint32_t [all...] |
/system/netd/ |
H A D | IdletimerController.h | 27 int addInterfaceIdletimer(const char *iface, uint32_t timeout, 29 int removeInterfaceIdletimer(const char *iface, uint32_t timeout, 40 int modifyInterfaceIdletimer(IptOp op, const char *iface, uint32_t timeout,
|
/system/core/include/netutils/ |
H A D | dhcp.h | 29 uint32_t *prefixLength, 32 uint32_t *lease, 39 uint32_t *prefixLength, 42 uint32_t *lease,
|
/system/media/audio_utils/include/audio_utils/ |
H A D | echo_reference.h | 55 uint32_t rdChannelCount, 56 uint32_t rdSamplingRate, 58 uint32_t wrChannelCount, 59 uint32_t wrSamplingRate,
|
/system/core/libcorkscrew/arch-x86/ |
H A D | dwarf.h | 74 uint32_t fde_count; 83 uint32_t code_align; 84 uint32_t data_align; 85 uint32_t reg; 86 uint32_t aug_z; 90 uint32_t aug_P; 98 uint32_t start; 99 uint32_t length; // number of instructions covered by FDE 100 uint32_t aug_z; 101 uint32_t aug_ [all...] |
H A D | ptrace-x86.c | 27 uint32_t elf_phoff; 28 uint32_t elf_phentsize_ehsize; 29 uint32_t elf_shentsize_phnum; 35 uint32_t elf_phentsize = elf_phentsize_ehsize >> 16; 36 uint32_t elf_phnum = elf_shentsize_phnum & 0xffff; 37 for (uint32_t i = 0; i < elf_phnum; i++) { 39 uint32_t elf_phdr_type; 44 uint32_t elf_phdr_offset;
|
/system/core/include/cutils/ |
H A D | memory.h | 31 void android_memset32(uint32_t* dst, uint32_t value, size_t size);
|
/system/core/libpixelflinger/tests/codegen/ |
H A D | codegen.cpp | 36 static void ggl_test_codegen(uint32_t n, uint32_t p, uint32_t t0, uint32_t t1) 72 uint32_t n; 73 uint32_t p; 74 uint32_t t0; 75 uint32_t t1;
|
/system/core/libpixelflinger/ |
H A D | buffer.cpp | 27 uint32_t x, uint32_t y, pixel_t* pixel); 29 uint32_t x, uint32_t y, const pixel_t* pixel); 31 uint32_t x, uint32_t y, pixel_t* pixel); 33 uint32_t x, uint32_t y, pixel_t* pixel); 35 static uint32_t logic_op(int op, uint32_t [all...] |
/system/core/include/diskconfig/ |
H A D | diskconfig.h | 69 uint32_t start_lba; /* bytes 8-11 */ 70 uint32_t len_lba; /* bytes 12-15 */ 75 uint32_t disk_sig; /* bytes 440-443 */ 85 uint32_t len_kb; /* in 1K-bytes */ 86 uint32_t start_lba; /* the LBA where this partition begins */ 93 uint32_t skip_lba; /* in sectors (1 unit of LBA) */ 94 uint32_t num_lba; /* the size of the disk in LBA units */ 102 uint32_t len; 107 struct write_list *alloc_wl(uint32_t data_len);
|