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

1234567891011>>

/freebsd-10.0-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.0-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.0-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.
80 znalloc(MemPool *mp, uintptr_t bytes) argument
87 bytes = (bytes + MEMNODE_SIZE_MASK) & ~MEMNODE_SIZE_MASK;
89 if (bytes == 0)
97 if (bytes <= mp->mp_Size - mp->mp_Used) {
102 if (bytes > mn->mr_Bytes)
113 if (mn->mr_Bytes == bytes) {
116 mn = (MemNode *)((char *)mn + bytes);
118 mn->mr_Bytes = ((MemNode *)ptr)->mr_Bytes - bytes;
139 zfree(MemPool *mp, void *ptr, uintptr_t bytes) argument
248 zextendPool(MemPool *mp, void *base, uintptr_t bytes) argument
[all...]
/freebsd-10.0-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.0-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.0-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.0-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:__anon1172
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:__anon1173
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:__anon1174
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.0-release/crypto/openssh/
H A Dbufbn.c56 * by (bits+7)/8 bytes of binary data, msb first.
76 /* Store the number of bits in the buffer in two bytes, msb first. */
101 u_int bits, bytes; local
110 /* Compute the number of binary bytes that follow. */
111 bytes = (bits + 7) / 8;
112 if (bytes > 8 * 1024) {
113 error("buffer_get_bignum_ret: cannot handle BN of size %d", bytes);
116 if (buffer_len(buffer) < bytes) {
121 if (BN_bin2bn(bin, bytes, value) == NULL) {
125 if (buffer_consume_ret(buffer, bytes)
145 u_int bytes; local
[all...]
/freebsd-10.0-release/contrib/ldns/compat/
H A Dcalloc.c11 # define bzero(buf, bytes) ((void) memset (buf, 0, bytes))
/freebsd-10.0-release/usr.sbin/bhyve/
H A Dpost.c39 post_data_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, argument
44 if (bytes != 1)
/freebsd-10.0-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.0-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.0-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.0-release/sys/ia64/include/
H A Dpci_cfgreg.h36 int bytes);
/freebsd-10.0-release/lib/libefi/
H A Dlibefi.c106 int c, bytes; local
112 bytes = 0;
121 if (bytes != 0) {
127 bytes = 3;
130 bytes = 2;
133 bytes = 1;
136 bytes = 0;
140 if (bytes > 0) {
142 bytes--;
143 } else if (bytes
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/MSP430/
H A DMSP430MachineFunctionInfo.h27 /// stack frame in bytes.
43 void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; } argument
/freebsd-10.0-release/sys/boot/arm/at91/libat91/
H A Dlib_AT91RM9200.h162 unsigned int bytes) // \arg number of bytes to be received
165 pPDC->PDC_RNCR = bytes;
176 unsigned int bytes) // \arg number of bytes to be transmitted
179 pPDC->PDC_TNCR = bytes;
190 unsigned int bytes) // \arg number of bytes to be received
193 pPDC->PDC_RCR = bytes;
204 unsigned int bytes) // \ar
159 AT91F_PDC_SetNextRx( AT91PS_PDC pPDC, char *address, unsigned int bytes) argument
173 AT91F_PDC_SetNextTx( AT91PS_PDC pPDC, char *address, unsigned int bytes) argument
187 AT91F_PDC_SetRx( AT91PS_PDC pPDC, char *address, unsigned int bytes) argument
201 AT91F_PDC_SetTx( AT91PS_PDC pPDC, char *address, unsigned int bytes) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.h26 /// Number of bytes of arguments this function has on the stack. If the callee
31 /// want to transfer control from a function with 8-bytes of stack-argument
32 /// space to a function with 16-bytes then misalignment of this value would
37 /// The number of bytes to restore to deallocate space for incoming
114 void setBytesInStackArgArea (unsigned bytes) { BytesInStackArgArea = bytes;} argument
117 void setArgumentStackToRestore(unsigned bytes) { argument
118 ArgumentStackToRestore = bytes;
122 void setInitialStackAdjust(unsigned bytes) { InitialStackAdjust = bytes; } argument
[all...]

Completed in 262 milliseconds

1234567891011>>