Searched refs:bytes (Results 1 - 25 of 580) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/texinfo/lib/
H A Dxmalloc.c33 to hold BYTES number of bytes. If the memory cannot be allocated,
36 xmalloc (size_t bytes) argument
38 void *temp = malloc (bytes);
46 xrealloc (void *pointer, size_t bytes) argument
51 temp = malloc (bytes);
53 temp = realloc (pointer, bytes);
/freebsd-10.1-release/contrib/libreadline/
H A Dxmalloc.c52 to hold BYTES number of bytes. If the memory cannot be allocated,
55 xmalloc (bytes)
56 size_t bytes;
60 temp = malloc (bytes);
67 xrealloc (pointer, bytes)
69 size_t bytes;
73 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
/freebsd-10.1-release/crypto/openssh/
H A Dhash.c35 unsigned long long bytes = inlen; local
49 padded[119] = bytes >> 61;
50 padded[120] = bytes >> 53;
51 padded[121] = bytes >> 45;
52 padded[122] = bytes >> 37;
53 padded[123] = bytes >> 29;
54 padded[124] = bytes >> 21;
55 padded[125] = bytes >> 13;
56 padded[126] = bytes >> 5;
57 padded[127] = bytes <<
[all...]
H A Dbufbn.c57 * by (bits+7)/8 bytes of binary data, msb first.
77 /* Store the number of bits in the buffer in two bytes, msb first. */
102 u_int bits, bytes; local
116 /* Compute the number of binary bytes that follow. */
117 bytes = (bits + 7) / 8;
118 if (bytes > 8 * 1024) {
119 error("buffer_get_bignum_ret: cannot handle BN of size %d", bytes);
122 if (buffer_len(buffer) < bytes) {
127 if (BN_bin2bn(bin, bytes, value) == NULL) {
131 if (buffer_consume_ret(buffer, bytes)
151 u_int bytes; local
[all...]
/freebsd-10.1-release/lib/libstand/
H A Dzalloc_protos.h32 Library void *znalloc(struct MemPool *mpool, uintptr_t bytes);
33 Library void zfree(struct MemPool *mpool, void *ptr, uintptr_t bytes);
34 Library void zextendPool(MemPool *mp, void *base, uintptr_t bytes);
H A Dzalloc.c68 * Allocation and frees of 0 bytes are valid operations.
89 znalloc(MemPool *mp, uintptr_t bytes) argument
96 bytes = (bytes + MEMNODE_SIZE_MASK) & ~MEMNODE_SIZE_MASK;
98 if (bytes == 0)
106 if (bytes <= mp->mp_Size - mp->mp_Used) {
111 if (bytes > mn->mr_Bytes)
122 if (mn->mr_Bytes == bytes) {
125 mn = (MemNode *)((char *)mn + bytes);
127 mn->mr_Bytes = ((MemNode *)ptr)->mr_Bytes - bytes;
148 zfree(MemPool *mp, void *ptr, uintptr_t bytes) argument
257 zextendPool(MemPool *mp, void *base, uintptr_t bytes) argument
[all...]
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Bin/
H A Dreadbytes.d3 * readbytes.d - read bytes by process name. DTrace OneLiner.
10 sysinfo:::readch { @bytes[execname] = sum(arg0); }
H A Dwritebytes.d3 * writebytes.d - write bytes by process name. DTrace OneLiner.
10 sysinfo:::writech { @bytes[execname] = sum(arg0); }
H A Drwbbypid.d3 * rwbbypid.d - read/write bytes by PID.
6 * This script tracks the bytes read and written at the syscall level
8 * successful number of bytes read or written.
18 * BYTES total bytes
49 @bytes[pid, execname, "R"] = sum(arg0);
54 @bytes[pid, execname, "W"] = sum(arg0);
60 printa("%6d %-24s %4s %@16d\n", @bytes);
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Proc/
H A Dreadbytes.d3 * readbytes.d - read bytes by process name. DTrace OneLiner.
10 sysinfo:::readch { @bytes[execname] = sum(arg0); }
H A Dwritebytes.d3 * writebytes.d - write bytes by process name. DTrace OneLiner.
10 sysinfo:::writech { @bytes[execname] = sum(arg0); }
H A Drwbbypid.d3 * rwbbypid.d - read/write bytes by PID.
6 * This script tracks the bytes read and written at the syscall level
8 * successful number of bytes read or written.
18 * BYTES total bytes
49 @bytes[pid, execname, "R"] = sum(arg0);
54 @bytes[pid, execname, "W"] = sum(arg0);
60 printa("%6d %-24s %4s %@16d\n", @bytes);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DEndian.h22 uint8_t bytes[sizeof(uint32_t)]; member in union:lldb::endian::EndianTest
25 inline ByteOrder InlHostByteOrder() { return (ByteOrder)endianTest.bytes[0]; }
27 // ByteOrder const InlHostByteOrder = (ByteOrder)endianTest.bytes[0];
/freebsd-10.1-release/contrib/gcclibs/libdecnumber/
H A Ddecimal128.h62 /* Decimal 128-bit type, accessible by bytes */
65 uint8_t bytes[DECIMAL128_Bytes]; /* decimal128: 1, 5, 12, 110 bits */ member in struct:__anon1247
79 #define decimal128Sign(d) ((unsigned)(d)->bytes[0]>>7)
82 #define decimal128Comb(d) (((d)->bytes[0] & 0x7c)>>2)
85 #define decimal128ExpCon(d) ((((d)->bytes[0] & 0x03)<<10) \
86 | ((unsigned)(d)->bytes[1]<<2) \
87 | ((unsigned)(d)->bytes[2]>>6))
91 (d)->bytes[0]|=((unsigned)(b)<<7);}
97 (d)->bytes[0]|=(uint8_t)((e)>>10); \
98 (d)->bytes[
[all...]
H A Ddecimal32.h54 /* Decimal 32-bit type, accessible by bytes */
57 uint8_t bytes[DECIMAL32_Bytes]; /* decimal32: 1, 5, 6, 20 bits */ member in struct:__anon1248
71 #define decimal32Sign(d) ((unsigned)(d)->bytes[0]>>7)
74 #define decimal32Comb(d) (((d)->bytes[0] & 0x7c)>>2)
77 #define decimal32ExpCon(d) ((((d)->bytes[0] & 0x03)<<4) \
78 | ((unsigned)(d)->bytes[1]>>4))
82 (d)->bytes[0]|=((unsigned)(b)<<7);}
88 (d)->bytes[0]|=(uint8_t)((e)>>4); \
89 (d)->bytes[1]|=(uint8_t)(((e)&0x0F)<<4);}
H A Ddecimal64.h58 /* Decimal 64-bit type, accessible by bytes */
61 uint8_t bytes[DECIMAL64_Bytes]; /* decimal64: 1, 5, 8, 50 bits */ member in struct:__anon1249
75 #define decimal64Sign(d) ((unsigned)(d)->bytes[0]>>7)
78 #define decimal64Comb(d) (((d)->bytes[0] & 0x7c)>>2)
81 #define decimal64ExpCon(d) ((((d)->bytes[0] & 0x03)<<6) \
82 | ((unsigned)(d)->bytes[1]>>2))
86 (d)->bytes[0]|=((unsigned)(b)<<7);}
92 (d)->bytes[0]|=(uint8_t)((e)>>6); \
93 (d)->bytes[1]|=(uint8_t)(((e)&0x3F)<<2);}
/freebsd-10.1-release/contrib/ldns/compat/
H A Dcalloc.c11 # define bzero(buf, bytes) ((void) memset (buf, 0, bytes))
/freebsd-10.1-release/sys/amd64/vmm/io/
H A Dvatpit.h40 int vatpit_handler(void *vm, int vcpuid, bool in, int port, int bytes,
42 int vatpit_nmisc_handler(void *vm, int vcpuid, bool in, int port, int bytes,
/freebsd-10.1-release/usr.sbin/bhyve/
H A Dpost.c40 post_data_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, argument
45 if (bytes != 1)
H A Datkbdc.c51 atkbdc_data_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, argument
54 if (bytes != 1)
64 int bytes, uint32_t *eax, void *arg)
68 if (bytes != 1)
63 atkbdc_sts_ctl_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, uint32_t *eax, void *arg) argument
/freebsd-10.1-release/sys/amd64/pci/
H A Dpci_cfgreg.c52 int bytes);
54 unsigned reg, unsigned bytes);
56 unsigned reg, int data, unsigned bytes);
57 static int pcireg_cfgread(int bus, int slot, int func, int reg, int bytes);
58 static void pcireg_cfgwrite(int bus, int slot, int func, int reg, int data, int bytes);
123 pci_docfgregread(int bus, int slot, int func, int reg, int bytes) argument
129 return (pciereg_cfgread(bus, slot, func, reg, bytes));
131 return (pcireg_cfgread(bus, slot, func, reg, bytes));
138 pci_cfgregread(int bus, int slot, int func, int reg, int bytes) argument
150 if (reg == PCIR_INTLINE && bytes
163 pci_cfgregwrite(int bus, int slot, int func, int reg, u_int32_t data, int bytes) argument
180 pci_cfgenable(unsigned bus, unsigned slot, unsigned func, int reg, int bytes) argument
206 pcireg_cfgread(int bus, int slot, int func, int reg, int bytes) argument
232 pcireg_cfgwrite(int bus, int slot, int func, int reg, int data, int bytes) argument
314 pciereg_cfgread(int bus, unsigned slot, unsigned func, unsigned reg, unsigned bytes) argument
345 pciereg_cfgwrite(int bus, unsigned slot, unsigned func, unsigned reg, int data, unsigned bytes) argument
[all...]
/freebsd-10.1-release/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_random.c44 unsigned char bytes[2]; local
60 if (read_loop(fd, bytes, sizeof(bytes)) != sizeof(bytes)) {
65 i = (((int)bytes[1] & 0x0f) << 8) | (int)bytes[0];
78 i = ((int)bytes[1] & 0x70) >> 4;
86 memset(bytes, 0, sizeof(bytes));
/freebsd-10.1-release/contrib/xz/src/common/
H A Dtuklib_mbstr.h25 extern size_t tuklib_mbstr_width(const char *str, size_t *bytes);
35 /// \param bytes If this is not NULL, *bytes is set to the
/freebsd-10.1-release/sys/amd64/vmm/
H A Dvmm_ioport.h33 bool in, int port, int bytes, uint32_t *val);
/freebsd-10.1-release/sys/ia64/include/
H A Dpci_cfgreg.h36 int bytes);

Completed in 293 milliseconds

1234567891011>>