| /netvirt/usr/src/lib/gss_mechs/mech_krb5/et/ |
| error_message.c | 34 int offset; local 41 offset = (int) l_offset; 45 cp = strerror(offset); 51 if (offset < sys_nerr) 52 return(sys_errlist[offset]); 62 return(ggss_error_table(offset)); 64 return(kadm_error_table(offset)); 66 return(kdb5_error_table(offset)); 68 return(kdc5_error_table(offset)); 70 return(kpws_error_table(offset)); [all...] |
| /netvirt/usr/src/uts/common/sys/ |
| vuid_store.h | 65 ushort_t offset; /* Offset of value from seg addr */ member in struct:vuid_value 95 #define vuid_set_boolean_bit(seg, offset) \ 96 (seg)->booleans[(offset)/BITSPERBYTE] |= \ 97 (1<<((BITSPERBYTE-1)-((offset)%BITSPERBYTE))) 98 #define vuid_clear_boolean_bit(seg, offset) \ 99 (seg)->booleans[(offset)/BITSPERBYTE] &= \ 100 (~(1<<((BITSPERBYTE-1)-((offset)%BITSPERBYTE)))) 101 #define vuid_get_boolean_bit(seg, offset) \ 102 ((seg)->booleans[(offset)/BITSPERBYTE] & [all...] |
| /netvirt/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/File/t/ |
| 42_offset.t | 3 # 2003-04-09 Tels: test the offset method from 0.94 36 is ($o->offset(0), 0, 'first one always there'); 37 is ($o->offset(1), undef, 'no offsets yet'); 40 is ($o->offset(0), 0, 'first is ok'); 41 is ($o->offset(1), 8, 'and second ok'); 42 is ($o->offset(2), undef, 'third undef'); 45 is ($o->offset(0), 0, 'first is ok'); 46 is ($o->offset(1), 8, 'and second ok'); 47 is ($o->offset(2), 14, 'and third ok'); 48 is ($o->offset(3), undef, 'fourth undef') [all...] |
| /netvirt/usr/src/cmd/sendmail/db/log/ |
| log_compare.c | 38 if (lsn0->offset != lsn1->offset) 39 return (lsn0->offset < lsn1->offset ? -1 : 1);
|
| /netvirt/usr/src/cmd/mdb/sun4u/modules/serengeti/sgsbbc/ |
| sgsbbc.c | 55 uint_t offset = 0; /* offset into soft state structure */ local 73 offset = (int)(uintptr_t)&softp.dip - (int)(uintptr_t)&softp; 74 mdb_printf("%p: dip: %31ll#r\n", addr + offset, softp.dip); 76 offset = (int)(uintptr_t)&softp.sram - (int)(uintptr_t)&softp; 77 mdb_printf("%p: sram: %30ll#r\n", addr + offset, softp.sram); 79 offset = (int)(uintptr_t)&softp.sbbc_regs - (int)(uintptr_t)&softp; 80 mdb_printf("%p: sbbc_regs: %25ll#r\n", addr + offset, softp.sbbc_regs); 82 offset = (int)(uintptr_t)&softp.port_int_regs - (int)(uintptr_t)&softp; 83 mdb_printf("%p: port_int_regs: %21ll#r\n", addr + offset, [all...] |
| /netvirt/usr/src/cmd/auditstat/ |
| auditstat.c | 110 int offset[12]; /* used to line the header up correctly */ local 115 s->as_generated, &(offset[0]), 116 s->as_nonattrib, &(offset[1]), 117 s->as_kernel, &(offset[2]), 118 s->as_audit, &(offset[3]), 119 s->as_auditctl, &(offset[4]), 120 s->as_enqueue, &(offset[5]), 121 s->as_written, &(offset[6]), 122 s->as_wblocked, &(offset[7]), 123 s->as_rblocked, &(offset[8]) [all...] |
| /netvirt/usr/src/lib/libgen/common/ |
| strfind.c | 41 * If `s2' is a substring of `s1' return the offset of the first 51 ptrdiff_t offset; local 59 offset = s1 - as1 - 1; 64 return ((int)offset); 65 s1 = offset + as1 + 1;
|
| /netvirt/usr/src/cmd/sendmail/db/os/ |
| os_seek.c | 26 * Seek to a page/byte offset in the file. 38 off_t offset; local 45 offset = (off_t)pgsize * pageno + relative; 47 offset = -offset; 49 ret = lseek(fd, offset, whence);
|
| /netvirt/usr/src/uts/common/io/xge/hal/include/ |
| xge-os-pal.h | 54 volatile int offset; member in struct:xge_os_tracebuf_t 67 int offset = tb->offset; \ 69 int leftsize = tb->size - offset; \ 71 xge_os_memzero(tb->data + offset, leftsize); \ 72 offset = 0; \ 75 xge_os_memcpy(tb->data + offset, tb->msg, msgsize); \ 76 offset += msgsize; \ 77 tb->offset = offset; \ [all...] |
| /netvirt/usr/src/tools/stabs/ |
| squander.c | 47 unsigned long offset; local 54 offset = 0; 56 if (offset != (mlp->offset / 8)) { 58 (mlp->offset / 8) - offset, 61 offset, mlp->offset / 8); 64 offset = (mlp->offset / 8) + (mlp->size / 8) [all...] |
| /netvirt/usr/src/lib/libsocket/inet/ |
| inet6_opt.c | 71 inet6_opt_append(void *extbuf, socklen_t extlen, int offset, uint8_t type, 94 remainder = (offset + 2 + len) % align; 101 endlen = offset + padbytes + 2 + len; 110 p = (uint8_t *)extbuf + offset; 143 inet6_opt_finish(void *extbuf, socklen_t extlen, int offset) 158 padbytes = 8 - (offset % 8); 162 if ((offset + padbytes > extlen) || !extbuf) { 166 return (offset + padbytes); 170 p = (uint8_t *)extbuf + offset; 189 return (offset + padbytes) 298 memcpy(val, (uint8_t *)databuf + offset, vallen); local [all...] |
| /netvirt/usr/src/lib/libc/port/rt/ |
| fallocate.c | 37 posix_fallocate(int fd, off_t offset, off_t len) 42 lck.l_start = offset; 56 posix_fallocate64(int fd, off64_t offset, off64_t len) 61 lck.l_start = offset;
|
| /netvirt/usr/src/cmd/ssh/libssh/common/ |
| buffer.c | 38 buffer->offset = 0; 62 buffer->offset = 0; 83 if (buffer->offset > MIN(buffer->alloc, BUFFER_MAX_CHUNK)) { 84 memmove(buffer->buf, buffer->buf + buffer->offset, 85 buffer->end - buffer->offset); 86 buffer->end -= buffer->offset; 87 buffer->offset = 0; 109 if (buffer->offset == buffer->end) { 110 buffer->offset = 0; 143 if (buffer->offset == buffer->end) [all...] |
| /netvirt/usr/src/cmd/man/src/util/nsgmls.src/lib/ |
| OffsetOrderedList.cxx | 18 void OffsetOrderedList::append(Offset offset) 20 // At any position in the list there's a current offset. 21 // The offset is initially zero. 22 // A byte of 255 says add 255 to the current offset. 24 // offset is the current offset + B, and that B + 1 should be 25 // added to the current offset. 26 Offset curOffset = blocks_.size() > 0 ? blocks_.back()->offset : 0 [all...] |
| /netvirt/usr/src/cmd/ssh/libopenbsd-compat/common/ |
| setenv.c | 47 * Sets offset to be the offset of the name/value combination in the 54 __findenv(name, offset) 56 int *offset; 73 *offset = p - environ; 94 int l_value, offset; local 100 if ((C = __findenv(name, &offset))) { /* find if already exists */ 130 offset = cnt; 133 if (!(environ[offset] = /* name + `=' + value */ 137 for (C = environ[offset]; (*C = *name++) && *C != '='; ++C 154 int offset; local [all...] |
| /netvirt/usr/src/lib/libresolv2/common/bsd/ |
| setenv.c | 61 static char *findenv(const char *name, int *offset); 72 int l_value, offset; local 77 if ((c = findenv(name, &offset))) { /* find if already exists */ 104 offset = cnt; 107 if (!(environ[offset] = /* name + `=' + value */ 110 for (c = environ[offset]; (*c = *name++) && *c != '='; ++c); 122 int offset; local 124 while (findenv(name, &offset)) /* if set multiple times */ 125 for (p = &environ[offset];; ++p) 133 * Sets offset to be the offset of the name/value combination in th [all...] |
| /netvirt/usr/src/uts/common/sys/nxge/ |
| nxge_common_impl.h | 193 #define NXGE_PIO_READ8(handle, devaddr, offset) \ 194 (ddi_get8(handle, (uint8_t *)((caddr_t)devaddr + offset))) 196 #define NXGE_PIO_READ16(handle, devaddr, offset) \ 197 (ddi_get16(handle, (uint16_t *)((caddr_t)devaddr + offset))) 199 #define NXGE_PIO_READ32(handle, devaddr, offset) \ 200 (ddi_get32(handle, (uint32_t *)((caddr_t)devaddr + offset))) 202 #define NXGE_PIO_READ64(handle, devaddr, offset) \ 203 (ddi_get64(handle, (uint64_t *)((caddr_t)devaddr + offset))) 205 #define NXGE_PIO_WRITE8(handle, devaddr, offset, data) \ 206 (ddi_put8(handle, (uint8_t *)((caddr_t)devaddr + offset), data) [all...] |
| /netvirt/usr/src/lib/efcode/engine/ |
| instance.c | 40 alloc_instance_data(fcode_env_t *env, int init, int n, int *offset) 44 *offset = ptr = MYSELF->device->data_size[init]; 57 token_t offset; local 61 offset = *ptr; 62 if (offset < 0) { 63 offset = -offset; 68 return (&MYSELF->data[which][offset]);
|
| /netvirt/usr/src/lib/libaio/common/ |
| llib-laio | 34 int aioread(int fd, caddr_t buf, int bufsz, off_t offset, int whence, 36 int aiowrite(int fd, caddr_t buf, int bufsz, off_t offset, int whence, 39 int aioread64(int fd, caddr_t buf, int bufsz, off64_t offset, int whence, 41 int aiowrite64(int fd, caddr_t buf, int bufsz, off64_t offset, int whence,
|
| /netvirt/usr/src/uts/common/sys/hotplug/pci/ |
| pciehpc.h | 43 uint_t (*get)(void *cookie, off_t offset); 44 uint_t (*put)(void *cookie, off_t offset, uint_t val);
|
| /netvirt/usr/src/uts/common/io/igb/ |
| igb_debug.c | 51 off_t offset; local 149 offset = cap_ptr; 153 pci_config_get8(handle, offset)); 155 next_ptr = pci_config_get8(handle, offset + 1); 161 pci_config_get16(handle, offset + PCI_PMCAP)); 164 pci_config_get16(handle, offset + PCI_PMCSR)); 167 pci_config_get8(handle, offset + PCI_PMCSR_BSE)); 170 pci_config_get8(handle, offset + PCI_PMDATA)); 173 offset = next_ptr; 177 pci_config_get8(handle, offset)); [all...] |
| /netvirt/usr/src/cmd/adbgen/common/ |
| adbsub.c | 43 * User claims offset is ok. 53 * Get adb.s dot to the right offset. 56 offset(off_t off) function 197 * Get the value at offset based on base. 200 indirect(off_t offset, size_t size, char *base, char *member) 203 if (offset == 0) { 206 printf("*(%s+0t%ld)", base, offset); 209 if (offset == 2) { 212 printf("(*(%s+0t%ld)&0xffff)", base, offset - 2); 215 if (offset == 3) [all...] |
| /netvirt/usr/src/lib/libcmd/common/ |
| revlib.c | 33 * copy the lines starting at offset <start> from in <in> to <out> 41 off_t offset; local 54 if((offset = sfseek(in,(off_t)0,SEEK_END)) <= start) 56 offset = rounddown(offset,BUFSIZE); 60 if(offset < start) 62 n -= (start-offset); 63 offset = start; 65 sfseek(in, offset, SEEK_SET); 101 if(offset <= start [all...] |
| /netvirt/usr/src/lib/gss_mechs/mech_krb5/krb5/posix/ |
| setenv.c | 68 int l_value, offset; 73 if ((c = __findenv(name, &offset))) { /* find if already exists */ 100 offset = cnt; 103 if (!(environ[offset] = /* name + `=' + value */ 107 for (c = environ[offset]; (*c = *name++) && (*c != '='); ++c); 126 int offset; 128 while (__findenv(name, &offset)) /* if set multiple times */ 129 for (p = &environ[offset];; ++p) 147 int offset; 149 return (__findenv(name, &offset)); [all...] |
| /netvirt/usr/src/cmd/truss/ |
| xstat.c | 72 show_o_stat(private_t *pri, long offset) 77 if (offset != NULL && 78 Pread(Proc, &statb, sizeof (statb), offset) == sizeof (statb)) { 110 show_stat(private_t *pri, long offset) 112 show_o_stat(pri, offset); 116 show_xstat(private_t *pri, int version, long offset) 120 show_o_stat(pri, offset); 123 show_stat32(pri, offset); 129 show_statat(private_t *pri, long offset) 133 show_stat64(pri, offset); [all...] |