Home
last modified time | relevance | path

Searched refs:bytes (Results 1 – 25 of 510) sorted by relevance

12345678910>>...21

/illumos-gate/usr/src/boot/libsa/
H A Dzalloc.c89 znalloc(MemPool *mp, uintptr_t bytes, size_t align) in znalloc() argument
99 bytes = (bytes + MEMNODE_SIZE_MASK) & ~MEMNODE_SIZE_MASK; in znalloc()
101 if (bytes == 0) in znalloc()
109 if (bytes > mp->mp_Size - mp->mp_Used) in znalloc()
122 if (bytes + extra > mn->mr_Bytes) in znalloc()
149 if (mn->mr_Bytes == bytes) { in znalloc()
152 mn = (MemNode *)((char *)mn + bytes); in znalloc()
154 mn->mr_Bytes = ((MemNode *)ptr)->mr_Bytes - bytes; in znalloc()
157 mp->mp_Used += bytes; in znalloc()
173 zfree(MemPool *mp, void *ptr, uintptr_t bytes) in zfree() argument
[all …]
H A Dzalloc_malloc.c55 Malloc(size_t bytes, const char *file __unused, int line __unused) in Malloc() argument
57 return (Malloc_align(bytes, 1)); in Malloc()
61 Memalign(size_t alignment, size_t bytes, const char *file __unused, in Memalign() argument
67 return (Malloc_align(bytes, alignment)); in Memalign()
71 Malloc_align(size_t bytes, size_t alignment) in Malloc_align() argument
76 bytes += MALLOCALIGN + 1; in Malloc_align()
78 bytes += MALLOCALIGN; in Malloc_align()
81 while ((res = znalloc(&MallocPool, bytes, alignment)) == NULL) { in Malloc_align()
82 int incr = (bytes + BLKEXTENDMASK) & ~BLKEXTENDMASK; in Malloc_align()
97 res->ga_Bytes = bytes; in Malloc_align()
[all …]
/illumos-gate/usr/src/psm/stand/boot/sparc/common/
H A Dsun4x_standalloc.c129 vpage_from_freelist(size_t bytes) in vpage_from_freelist() argument
135 for (i = 0; i < N_FREELIST && free_size[i] < bytes; i++) in vpage_from_freelist()
140 "memory\n", bytes); in vpage_from_freelist()
145 free_addr[i] += bytes; in vpage_from_freelist()
146 free_size[i] -= bytes; in vpage_from_freelist()
147 dprintf("reuse freed temp scratch: bytes = %lu at %p\n", bytes, in vpage_from_freelist()
163 size_t bytes; in get_low_vpage() local
170 bytes = numpages * pagesize; in get_low_vpage()
171 if (scratchmemp + bytes <= top_bootmem) { in get_low_vpage()
173 scratchmemp += bytes; in get_low_vpage()
[all …]
/illumos-gate/usr/src/stand/lib/sa/
H A Dstdio.c110 int bytes; in fgets() local
116 for (bytes = 0; bytes < (n - 1); ++bytes) { in fgets()
117 cnt = read(stream->_file, &s[bytes], 1); in fgets()
119 if (bytes != 0) { in fgets()
120 s[bytes] = '\0'; in fgets()
128 if (bytes != 0) { in fgets()
129 s[bytes] = '\0'; in fgets()
135 if (s[bytes] == '\n') { in fgets()
136 s[bytes + 1] = '\0'; in fgets()
141 s[bytes] = '\0'; in fgets()
[all …]
/illumos-gate/usr/src/cmd/bnu/
H A Dstatlog.c40 statlog( direction, bytes, millisecs, breakmsg) in statlog() argument
42 unsigned long bytes;
56 if (bytes < 1<<22)
57 bytes1000 = (bytes*1000/millisecs);
59 bytes1000 = ((bytes/millisecs)*1000);
62 direction, bytes, millisecs/1000, millisecs%1000,
89 putfilesize(bytes) in putfilesize() argument
90 unsigned long bytes; in putfilesize()
92 filesize = bytes;
H A Dxio.c143 unsigned long bytes; in xwrdata() local
146 bytes = 0L; in xwrdata()
149 bytes += len; in xwrdata()
150 putfilesize(bytes); in xwrdata()
177 unsigned long bytes; in xrddata() local
180 bytes = 0L; in xrddata()
187 bytes += len; in xrddata()
188 putfilesize(bytes); in xrddata()
H A Deio.c130 unsigned long bytes; local
144 bytes = 0L;
171 bytes += len;
172 putfilesize(bytes);
201 long msglen, bytes; in erddata() local
258 bytes += len; in erddata()
259 putfilesize(bytes); in erddata()
361 unsigned long bytes; local
370 bytes = 0L;
374 bytes += len;
[all …]
/illumos-gate/usr/src/test/zfs-tests/tests/perf/scripts/
H A Dio.d54 @bytes["read"] = sum(0);
55 @bytes["write"] = sum(0);
56 @bytes["zfs_read"] = sum(0);
57 @bytes["zfs_write"] = sum(0);
58 @bytes["zfs_write_sync"] = sum(0);
59 @bytes["zfs_write_async"] = sum(0);
63 clear(@bytes);
79 self->bytes = args[1]->uio_resid;
99 @bytes[this->name] = sum(self->bytes);
110 @bytes[probefunc] = sum(self->bytes);
[all …]
/illumos-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp.c192 httpDumpData(FILE *fp, const char *tag, const char *buffer, int bytes) in httpDumpData() argument
196 fprintf(fp, "%s %d(0x%x) bytes...\n", tag, bytes, bytes); in httpDumpData()
197 for (i = 0; i < bytes; i += 16) { in httpDumpData()
200 for (j = 0; j < 16 && (i + j) < bytes; j ++) in httpDumpData()
209 for (j = 0; j < 16 && (i + j) < bytes; j ++) { in httpDumpData()
909 int bytes; /* Bytes read */ in httpRead() local
981 bytes = sizeof(http->buffer); in httpRead()
983 bytes = http->data_remaining; in httpRead()
987 bytes = http_read_ssl(http, http->buffer, bytes); in httpRead()
992 bytes)); in httpRead()
[all …]
/illumos-gate/usr/src/boot/efi/libefi/
H A Defichar.c125 int c, bytes; in utf8_to_ucs2() local
137 bytes = 0; in utf8_to_ucs2()
146 if (bytes != 0) in utf8_to_ucs2()
150 bytes = 3; in utf8_to_ucs2()
153 bytes = 2; in utf8_to_ucs2()
156 bytes = 1; in utf8_to_ucs2()
159 bytes = 0; in utf8_to_ucs2()
163 if (bytes > 0) { in utf8_to_ucs2()
165 bytes--; in utf8_to_ucs2()
166 } else if (bytes == 0) { in utf8_to_ucs2()
[all …]
/illumos-gate/usr/src/lib/libc/capabilities/sun4u-opl/common/
H A Dmemcpy.S131 andcc %o0, 7, %o5 ! bytes till DST 8 byte aligned
167 ldx [%o1-16], %o3 ! a block of 32 bytes
174 bgu,pt %ncc, .dbmedl32 ! repeat if at least 32 bytes left
178 ble,pt %ncc, .dbmedl15 ! skip if 15 or fewer bytes left
180 ldx [%o1-8], %o4 ! load and store 16 bytes
192 blt,pt %ncc, .dbremain ! skip if 7 or fewer bytes left
194 ldx [%o1-8], %o4 ! load 8 bytes
196 stx %o4, [%o0-8] ! and store 8 bytes
224 ldd [%o5-8], %d2 ! load 8 bytes
225 ldd [%o5-16], %d4 ! load 8 bytes
[all …]
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dstrncpy.S55 ! strncpy works similarly to strcpy, except that n bytes of s2
57 ! bytes remain to be copied, strncpy will copy null bytes into
75 sub %o4, 8, %o4 ! bytes until src aligned
102 be,pn %ncc, .storebyte1421 ! store 1, 4, 2, 1 bytes
120 ! remaining src bytes and then start padding with null bytes
127 movz %ncc, %g0, %o1 ! if so, start padding with null bytes
131 movz %ncc, %g0, %o1 ! if so, start padding with null bytes
135 movz %ncc, %g0, %o1 ! if so, start padding with null bytes
139 movz %ncc, %g0, %o1 ! if so, start padding with null bytes
143 movz %ncc, %g0, %o1 ! if so, start padding with null bytes
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dmemlist_new.c90 memlist_free_block(caddr_t base, size_t bytes) in memlist_free_block() argument
95 count = bytes / sizeof (struct memlist); in memlist_free_block()
203 uint64_t bytes, in memlist_add_span() argument
220 dst->ml_size = bytes; in memlist_add_span()
247 if ((address + bytes) == next->ml_address) { in memlist_add_span()
251 next->ml_size += bytes; in memlist_add_span()
266 if ((address + bytes) > in memlist_add_span()
273 if ((address + bytes) == in memlist_add_span()
282 mlp->ml_size += bytes; in memlist_add_span()
293 next->ml_size += bytes; in memlist_add_span()
[all …]
/illumos-gate/usr/src/lib/libc/capabilities/sun4u-us3/common/
H A Dmemcpy.S124 andcc %o0, 7, %o5 ! bytes till DST 8 byte aligned
162 ldd [%o1-16], %d2 ! a block of 64 bytes
177 bgu,pt %ncc, .dbmedl64 ! repeat if at least 64 bytes left
191 ldx [%o1-16], %o3 ! a block of 32 bytes
198 bgu,pt %ncc, .dbmedl32 ! repeat if at least 32 bytes left
202 ble,pt %ncc, .dbmedl15 ! skip if 15 or fewer bytes left
204 ldx [%o1-8], %o4 ! load and store 16 bytes
216 blt,pt %ncc, .dbremain ! skip if 7 or fewer bytes left
218 ldx [%o1-8], %o4 ! load 8 bytes
220 stx %o4, [%o0-8] ! and store 8 bytes
[all …]
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dev_streams.c37 static void consume(evStream *str, size_t bytes);
219 consume(evStream *str, size_t bytes) { in consume() argument
220 while (bytes > 0U) { in consume()
221 if (bytes < (size_t)str->iovCur->iov_len) { in consume()
222 str->iovCur->iov_len -= bytes; in consume()
224 ((u_char *)str->iovCur->iov_base + bytes); in consume()
225 str->ioDone += bytes; in consume()
226 bytes = 0; in consume()
228 bytes -= str->iovCur->iov_len; in consume()
258 int bytes; in writable() local
[all …]
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPHeaderV2.java634 byte[] bytes = obaos.toByteArray(); in externalizeOptions()
636 baos.write(bytes, 0, bytes.length); in externalizeOptions()
669 byte[] bytes = getStringBytes(address, Defaults.UTF8); in parsePreviousRespondersOut()
673 if (bytes.length <= available) { in parsePreviousRespondersOut()
674 bbaos.write(bytes, 0, bytes.length); in parsePreviousRespondersOut()
675 available = available - bytes.length; in parsePreviousRespondersOut()
804 byte[] bytes = getStringBytes(surl.toString(), Defaults.UTF8); in parseServiceURLOut()
826 putInteger(bytes.length, abaos); in parseServiceURLOut()
829 message[1] = bytes; in parseServiceURLOut()
836 bytes = (byte[]) bytesArray[1]; in parseServiceURLOut()
[all …]
H A DCDAAdvert.java186 byte[] bytes) in getInt32() argument
189 bytes[0] = (byte)dis.read(); in getInt32()
190 bytes[1] = (byte)dis.read(); in getInt32()
191 bytes[2] = (byte)dis.read(); in getInt32()
192 bytes[3] = (byte)dis.read(); in getInt32()
194 long a = (long)((char)bytes[0] & 0xFF); in getInt32()
195 long b = (long)((char)bytes[1] & 0xFF); in getInt32()
196 long c = (long)((char)bytes[2] & 0xFF); in getInt32()
197 long d = (long)((char)bytes[3] & 0xFF); in getInt32()
H A DSrvLocHeader.java422 byte[] bytes = new byte[n]; in getStringField()
424 dis.readFully(bytes, 0, n); in getStringField()
428 buf.append(getBytesString(bytes, encoding)); in getStringField()
430 return bytes; in getStringField()
438 byte[] bytes = putStringField(string, baos, Defaults.UTF8); in putString()
440 nbytes += bytes.length + SHORT_SIZE; in putString()
442 return bytes; in putString()
454 byte[] bytes = getStringBytes(string, encoding); in putStringField()
458 putInteger(bytes.length, baos); in putStringField()
462 baos.write(bytes, 0, bytes.length); in putStringField()
[all …]
/illumos-gate/usr/src/lib/libbsm/common/
H A Dau_to.c211 short bytes; /* length of string */ in au_to_arg32() local
213 bytes = strlen(text) + 1; in au_to_arg32()
216 sizeof (short) + bytes)); in au_to_arg32()
223 adr_short(&adr, &bytes, 1); in au_to_arg32()
224 adr_char(&adr, text, bytes); in au_to_arg32()
240 short bytes; /* length of string */ in au_to_arg64() local
242 bytes = strlen(text) + 1; in au_to_arg64()
245 sizeof (short) + bytes)); in au_to_arg64()
252 adr_short(&adr, &bytes, 1); in au_to_arg64()
253 adr_char(&adr, text, bytes); in au_to_arg64()
[all …]
/illumos-gate/usr/src/cmd/bhyve/
H A Dpm.c76 int port __unused, int bytes, uint32_t *eax, void *arg __unused) in reset_handler() argument
82 if (bytes != 1) in reset_handler()
174 int port __unused, int bytes, uint32_t *eax, void *arg __unused) in pm1_status_handler() argument
177 if (bytes != 2) in pm1_status_handler()
198 int port __unused, int bytes, uint32_t *eax, void *arg __unused) in pm1_enable_handler() argument
201 if (bytes != 2) in pm1_enable_handler()
281 int port __unused, int bytes, uint32_t *eax, void *arg __unused) in pm1_control_handler() argument
285 if (bytes != 2) in pm1_control_handler()
333 int bytes, uint32_t *eax, void *arg __unused) in gpe0_sts() argument
339 if (bytes != 1) in gpe0_sts()
[all …]
H A Dinout.c80 int port __unused, int bytes, uint32_t *eax, void *arg __unused) in default_inout() argument
83 switch (bytes) { in default_inout()
123 uint8_t bytes; in emulate_inout() local
126 bytes = inout->bytes; in emulate_inout()
129 assert(bytes == 1 || bytes == 2 || bytes == 4); in emulate_inout()
147 error = hfunc(ctx, in, inout->port, bytes, &inout->eax, harg); in emulate_inout()
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/
H A Dstatistics.c32 fmt_human_units(size_t bytes, char *buf, size_t bufsize) in fmt_human_units() argument
37 size_t unit_bytes = bytes; in fmt_human_units()
46 if (unit_bytes == bytes) in fmt_human_units()
67 size_t desc_cnt = 0, desc_used = 0, bytes; in rel_cache_statistics() local
77 bytes = desc_cnt * sizeof (Rel_desc); in rel_cache_statistics()
83 EC_XWORD(bytes), in rel_cache_statistics()
84 fmt_human_units(bytes, unit_buf, sizeof (unit_buf))); in rel_cache_statistics()
99 size_t desc_cnt = 0, desc_used = 0, bytes; in rel_aux_cache_statistics() local
108 bytes = desc_cnt * sizeof (Rel_desc); in rel_aux_cache_statistics()
114 EC_XWORD(bytes), in rel_aux_cache_statistics()
[all …]
/illumos-gate/usr/src/test/zfs-tests/cmd/readmmap/
H A Dreadmmap.c56 int fd = -1, bytes, retval = 0; in main() local
81 bytes = write(fd, buf, size); in main()
82 if (bytes != size) { in main()
83 (void) printf("short write: %d != %ud\n", bytes, size); in main()
112 bytes = pread(fd, buf, size, 0); in main()
113 if (bytes != size) { in main()
114 (void) printf("short read: %d != %ud\n", bytes, size); in main()
/illumos-gate/usr/src/lib/libc/sparcv9/crt/
H A D__align_cpy_8.S78 bz,pn %xcc, .wrdbl2 ! Only 8 bytes need to be copied.
80 bpos,a,pt %xcc, .wrdbl1 ! Have at least 16 bytes to copy.
83 retl ! No bytes to copy.
87 .wrdbl1: ! Copy 16 bytes at a time.
94 bg,a,pt %xcc, .wrdbl1 ! Have at least 16 more bytes.
97 bz,a,pt %xcc, .wrdbl3 ! Have 8 bytes remaining to copy.
104 ldx [%o1], %o3 ! Copy last 8 bytes.
/illumos-gate/usr/src/lib/iconv_modules/utf-8/txt_ebcdic_utf/
H A Dshadow.txt117 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */
118 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */
119 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */
120 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */
121 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */
184 -1, /* NOT be used with the shortest number of bytes in UTF-EBCDIC */

12345678910>>...21