Searched refs:uint64_t (Results 76 - 100 of 377) sorted by relevance

1234567891011>>

/haiku/src/libs/compat/freebsd_network/compat/dev/usb/
H A Dusb_endian.h63 (((uint64_t)((w)[4])) << 32) | \
64 (((uint64_t)((w)[5])) << 40) | \
65 (((uint64_t)((w)[6])) << 48) | \
66 (((uint64_t)((w)[7])) << 56))
/haiku/src/system/libroot/posix/musl/internal/
H A Dlibm.h16 uint64_t m;
22 * on archs where the alignment requirement of uint64_t is <= 4. */
28 uint64_t m;
35 uint64_t lo;
41 uint64_t lo;
42 uint64_t hi;
52 uint64_t lo;
55 uint64_t hi;
56 uint64_t lo;
193 #define asuint64(f) ((union{double _f; uint64_t _
[all...]
/haiku/src/system/libroot/posix/musl/math/
H A Dfma.c6 #define ASUINT64(x) ((union {double f; uint64_t i;}){x}).i
9 struct num { uint64_t m; int e; int sign; };
13 uint64_t ix = ASUINT64(x);
29 static void mul(uint64_t *hi, uint64_t *lo, uint64_t x, uint64_t y)
31 uint64_t t1,t2,t3;
32 uint64_t xlo = (uint32_t)x, xhi = x>>32;
33 uint64_t yl
[all...]
H A Dceil.c12 union {double f; uint64_t i;} u = {x};
H A Dfloor.c12 union {double f; uint64_t i;} u = {x};
H A Drint.c14 union {double f; uint64_t i;} u = {x};
/haiku/src/system/boot/platform/efi/arch/x86_64/
H A Darch_mmu.cpp92 uint64_t base = entry->PhysicalStart;
93 uint64_t end = entry->PhysicalStart + entry->NumberOfPages * 4096;
94 uint64_t originalSize = end - base;
105 uint64_t size = end - base;
124 uint64_t initialPhysicalMemory = total_physical_memory();
138 uint64_t base = entry->PhysicalStart;
139 uint64_t end = entry->PhysicalStart + entry->NumberOfPages * 4096;
191 uint64_t
197 uint64_t *pml4;
198 uint64_t *pdp
[all...]
/haiku/src/add-ons/kernel/busses/virtio/virtio_pci/
H A Dvirtio_pci.h140 uint64_t queue_desc; /* read-write */
141 uint64_t queue_avail; /* read-write */
142 uint64_t queue_used; /* read-write */
/haiku/headers/libs/libfdt/
H A Dlibfdt.h161 static inline uint64_t fdt64_ld(const fdt64_t *p)
165 return ((uint64_t)bp[0] << 56)
166 | ((uint64_t)bp[1] << 48)
167 | ((uint64_t)bp[2] << 40)
168 | ((uint64_t)bp[3] << 32)
169 | ((uint64_t)bp[4] << 24)
170 | ((uint64_t)bp[5] << 16)
171 | ((uint64_t)bp[6] << 8)
175 static inline void fdt64_st(void *property, uint64_t value)
454 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *addres
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/broadcom440x/dev/bfe/
H A Dif_bfereg.h444 #define BFE_ADDR_LO(x) ((uint64_t)(x) & 0xFFFFFFFF)
535 uint64_t tx_good_octets;
536 uint64_t tx_good_frames;
537 uint64_t tx_octets;
538 uint64_t tx_frames;
539 uint64_t tx_bcast_frames;
540 uint64_t tx_mcast_frames;
541 uint64_t tx_pkts_64;
542 uint64_t tx_pkts_65_127;
543 uint64_t tx_pkts_128_25
[all...]
/haiku/headers/posix/
H A Dstdint.h23 typedef __haiku_std_uint64 uint64_t; typedef
36 typedef uint64_t uint_least64_t;
49 typedef uint64_t uint_fast64_t;
57 typedef uint64_t uintmax_t;
164 typedef uint64_t u_int64_t;
/haiku/src/system/kernel/arch/arm64/
H A Darch_int.cpp130 static constexpr uint64_t kPteAddrMask = (((1UL << 36) - 1) << 12);
131 static constexpr uint64_t kPteAttrMask = ~(kPteAddrMask | 0x3);
132 static constexpr uint64_t kAttrSWDBM = (1UL << 55);
133 static constexpr uint64_t kAttrAF = (1UL << 10);
134 static constexpr uint64_t kAttrAP2 = (1UL << 7);
137 static uint64_t*
140 return reinterpret_cast<uint64_t*>(KERNEL_PMAP_BASE + pa);
148 uint64_t tableMask = (1UL << tableBits) - 1;
151 uint64_t entrySize = 1UL << shift;
152 uint64_t entryMas
[all...]
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_spec.h87 uint64_t raw;
326 uint64_t asq;
329 uint64_t acq;
407 uint64_t address;
424 uint64_t length : 24;
425 uint64_t key : 32;
426 uint64_t subtype : 4;
427 uint64_t type : 4;
513 uint64_t mptr; /* metadata pointer */
518 uint64_t prp
[all...]
/haiku/headers/private/fs_shell/
H A Dfssh_byte_order.h49 #define FSSH_B_HOST_TO_LENDIAN_INT64(arg) (uint64_t)(arg)
56 #define FSSH_B_LENDIAN_TO_HOST_INT64(arg) (uint64_t)(arg)
97 #define FSSH_B_HOST_TO_BENDIAN_INT64(arg) (uint64_t)(arg)
104 #define FSSH_B_BENDIAN_TO_HOST_INT64(arg) (uint64_t)(arg)
123 extern uint64_t __fssh_swap_int64(uint64_t arg);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_rate/sample/
H A Dsample.h63 uint64_t tries;
64 uint64_t total_packets; /* pkts total since assoc */
65 uint64_t packets_acked; /* pkts acked since assoc */
95 uint64_t ratemask; /* bit mask of valid rate indices */
117 #define IS_RATE_DEFINED(sn, rix) (((uint64_t) (sn)->ratemask & (1ULL<<((uint64_t) rix))) != 0)
/haiku/src/add-ons/kernel/busses/pci/ecam/
H A DECAMPCIControllerFDT.cpp43 uint64_t childAdr = B_BENDIAN_TO_HOST_INT64(*(uint64_t*)(it + 1));
44 uint64_t parentAdr = B_BENDIAN_TO_HOST_INT64(*(uint64_t*)(it + 3));
45 uint64_t len = B_BENDIAN_TO_HOST_INT64(*(uint64_t*)(it + 5));
/haiku/src/libs/uuid/
H A Duuid_time.c51 uint64_t clock_reg;
56 clock_reg = uuid.time_low | ((uint64_t) high << 32);
58 clock_reg -= (((uint64_t) 0x01B21DD2) << 32) + 0x13814000;
/haiku/headers/libs/udis86/libudis86/
H A Dextern.h51 extern LIBUDIS86_DLLEXTERN void ud_set_pc(struct ud*, uint64_t);
81 extern LIBUDIS86_DLLEXTERN uint64_t ud_insn_off(const struct ud*);
105 uint64_t addr,
/haiku/headers/libs/x86emu/x86emu/
H A Dtypes.h68 typedef uint64_t u64;
/haiku/headers/private/vmdk/
H A Dvmdk.h12 typedef uint64_t SectorType;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_athdfs.h42 uint64_t tsf, struct ath_rx_status *rxstat);
/haiku/headers/private/kernel/platform/efi/protocol/
H A Dloaded-image.h27 uint64_t ImageSize;
H A Dconsole-control.h21 uint64_t Revision;
/haiku/src/system/libroot/posix/crypt/
H A Dcrypto_scrypt.cpp54 const uint8_t * salt, size_t saltlen, uint64_t N, uint32_t _r, uint32_t _p,
66 if (buflen > (((uint64_t)(1) << 32) - 1) * 32) {
71 if ((uint64_t)(r) * (uint64_t)(p) >= (1 << 30)) {
/haiku/src/tools/remote_disk_server/
H A Dremote_disk_server.cpp29 uint64_t swap_uint64(uint64_t data)
195 uint64_t offset = ntohll(fRequest->offset);
201 if (offset < (uint64_t)fImageSize && size > 0) {
204 if (offset + size > (uint64_t)fImageSize)
238 uint64_t offset = ntohll(fRequest->offset);
246 || offset > (uint64_t)fImageSize) {
248 } else if (offset < (uint64_t)fImageSize && size > 0) {
249 if (offset + size > (uint64_t)fImageSize)

Completed in 241 milliseconds

1234567891011>>