Searched refs:off (Results 1 - 25 of 1112) sorted by relevance

1234567891011>>

/macosx-10.10.1/dtrace-147/libelf/
H A Drand.c37 elf_rand(Elf * elf, size_t off) argument
47 if ((off == 0) || (elf->ed_fsz < off)) {
52 elf->ed_nextoff = off;
54 return (off);
H A Drawput.c47 _elf_read(int fd, off_t off, size_t fsz) argument
59 if (lseek(fd, off, 0) != off) {
H A Dstrptr.c38 elf_strptr(Elf * elf, size_t ndx, size_t off) argument
47 extern const char *elf_macho_str_off(size_t off);
50 return (char *)elf_macho_str_off(off);
91 if ((off >= d->d_off) &&
92 (off < d->d_off + d->d_size)) {
93 rc = (char *)d->d_buf + off - d->d_off;
104 if (off < j)
106 off -= j;
109 if (off < d->d_size) {
110 rc = (char *)d->d_buf + off;
[all...]
H A Dinput.c81 #define PGNUM(off) ((off % REGSZ) / _elf_pagesize)
82 #define REGNUM(off) (off / REGSZ)
93 off_t off; local
128 off = base - base % _elf_pagesize;
151 iop = (Elf_Void *)(elf->ed_image + off);
155 if (elf->ed_imagesz - off < sz)
156 sz = elf->ed_imagesz - off;
157 if ((lseek(elf->ed_fd, off,
206 register off_t off = lseek(fd, (off_t)0, SEEK_END); local
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/stdio/
H A Dfseek.c31 fseek(Sfio_t* f, long off, int op) argument
33 STDIO_INT(f, "fseek", int, (Sfio_t*, long, int), (f, off, op))
35 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
41 fseek64(Sfio_t* f, int64_t off, int op) argument
43 STDIO_INT(f, "fseek64", int, (Sfio_t*, int64_t, int), (f, off, op))
45 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
H A Dfseeko.c31 fseeko(Sfio_t* f, off_t off, int op) argument
33 STDIO_INT(f, "fseeko", int, (Sfio_t*, off_t, int), (f, off, op))
35 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
41 fseeko64(Sfio_t* f, int64_t off, int op) argument
43 STDIO_INT(f, "fseeko64", int, (Sfio_t*, int64_t, int), (f, off, op))
45 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/util/
H A DFastInputStream.java29 protected int off; field in class:FastInputStream
56 off = offset;
64 return len - off;
74 mark = off;
79 off = mark;
85 if (myCount + off > len) {
86 myCount = len - off;
116 off += count;
126 return (off < len) ? (buf[off
[all...]
H A DPackedInteger.java54 * @param off the offset in the buffer at which to start reading.
58 public static int readInt(byte[] buf, int off) { argument
63 int b1 = buf[off++];
74 int value = buf[off++] & 0xFF;
76 value |= (buf[off++] & 0xFF) << 8;
78 value |= (buf[off++] & 0xFF) << 16;
80 value |= (buf[off++] & 0xFF) << 24;
93 * @param off the offset in the buffer at which to start reading.
97 public static long readLong(byte[] buf, int off) { argument
102 int b1 = buf[off
152 getReadIntLength(byte[] buf, int off) argument
177 getReadLongLength(byte[] buf, int off) argument
[all...]
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/Sample/Embedded/
H A Dracoon.conf22 randomize off; # enable randomize length.
23 strict_check off; # enable strict check.
24 exclusive_tail off; # extract last one octet.
/macosx-10.10.1/ruby-106/ruby/ext/ripper/tools/
H A Dgenerate-param-macros.rb0 off = true
5 off = false
9 next if off
/macosx-10.10.1/dtrace-147/test/tst/common/sched/
H A Dtst.oncpu.d38 sched:::off-cpu
41 self->off++;
44 sched:::off-cpu
45 /self->on > 50 && self->off > 50/
/macosx-10.10.1/ruby-106/ruby/win32/
H A Drmall.bat1 @echo off
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dtc.c19 RDE_STACK off; /* Offsets of characters in 'string' */ member in struct:RDE_TC_
36 tc->off = rde_stack_new (NULL);
44 rde_stack_del (tc->off);
53 return rde_stack_size (tc->off);
61 rde_stack_trim (tc->off, 0);
68 long int off = tc->num;
91 ASSERT_BOUNDS(off,tc->max);
92 ASSERT_BOUNDS(off+len-1,tc->max);
93 ASSERT_BOUNDS(off+len-1,tc->num);
94 memcpy (tc->str + off, strin
67 long int off = tc->num; local
117 long int oc, off, top, end; local
143 long int oc, off, top, end; local
[all...]
/macosx-10.10.1/apr-32/apr-util/apr-util/test/
H A Dtestrmm.c40 apr_rmm_off_t *off, off2; local
63 off = apr_palloc(pool, FRAG_COUNT * sizeof(apr_rmm_off_t));
65 off[i] = apr_rmm_malloc(rmm, fragsize);
74 char *c = apr_rmm_addr_get(rmm, off[i]);
77 ABTS_TRUE(tc, !!off[i]);
84 char **c = apr_rmm_addr_get(rmm, off[i]);
93 char **c = apr_rmm_addr_get(rmm, off[i]);
102 rv = apr_rmm_free(rmm, off[i]);
107 off[0] = apr_rmm_calloc(rmm, SHARED_SIZE);
111 char **c = apr_rmm_addr_get(rmm, off[
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/XCore/
H A DXCoreMachineFunctionInfo.h51 void setVarArgsFrameIndex(int off) { VarArgsFrameIndex = off; } argument
57 void setLRSpillSlot(int off) { LRSpillSlot = off; } argument
60 void setFPSpillSlot(int off) { FPSpillSlot = off; } argument
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts.noah/
H A Dmeta.bash11 # Usage: meta [on|off]
17 # An argument of "off" causes bash to disregard the 8th bit, which is
26 bind 'set convert-meta off' ;;
27 off) bind 'set input-meta Off'
28 bind 'set output-meta off'
30 *) echo "Usage: meta [on|off]" 1>&2 ; return 1 ;;
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxml/win/
H A Dinstall.bat1 @echo off
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxslt/win/
H A Dinstall.bat1 @echo off
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/misc/
H A Dfs3d.c48 static char off[] = FS3D_off; local
69 else if (!strncmp(v, off, sizeof(off) - 1) && v[sizeof(off)] == '=')
70 cur = FS3D_LIMIT((int)strtol(v + sizeof(off) + 1, NiL, 0));
78 v = off;
84 sfsprintf(val, sizeof(val), "%s=%d", off, FS3D_arg(op));
/macosx-10.10.1/apr-32/apr-util/apr-util/dbm/sdbm/
H A Dsdbm_pair.c68 register int off; local
72 off = ((n = ino[0]) > 0) ? ino[n] : PBLKSIZ;
73 avail = off - (n + 1) * sizeof(short);
88 register int off; local
91 off = ((n = ino[0]) > 0) ? ino[n] : PBLKSIZ;
95 off -= key.dsize;
96 (void) memcpy(pag + off, key.dptr, key.dsize);
97 ino[n + 1] = off;
101 off -= val.dsize;
102 (void) memcpy(pag + off, va
146 register int off; local
241 register int off = PBLKSIZ; local
263 register int off = PBLKSIZ; local
302 register int off; local
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A Dtrim_sgr0.c237 char *off = set_attribute_9(tp, 0); local
244 TR(TRACE_DATABASE, ("sgr(9:off) %s", _nc_visbuf(off)));
248 || !rewrite_sgr(off, exit_alt_charset_mode)
250 FreeIfNeeded(off);
251 } else if (similar_sgr(off, end)
252 && !similar_sgr(off, on)) {
253 TR(TRACE_DATABASE, ("adjusting sgr(9:off) : %s", _nc_visbuf(off)));
254 result = off;
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/library/store/XOTclSdbm/
H A Dpair.c54 register int off; local
59 off = ((n = ino[0]) > 0) ? ino[n] : PBLKSIZ;
60 free_space = off - (n + 1) * sizeof(short);
75 register int off; local
78 off = ((n = ino[0]) > 0) ? ino[n] : PBLKSIZ;
82 off -= key.dsize;
83 (void) memcpy(pag + off, key.dptr, key.dsize);
84 ino[n + 1] = off;
88 off -= val.dsize;
89 (void) memcpy(pag + off, va
135 register int off; local
230 register int off = PBLKSIZ; local
252 register int off = PBLKSIZ; local
291 register int off; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cssm/lib/
H A Dcspattachment.h42 # pragma export off
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/unix03/
H A Dmmap.c34 void *__mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off);
43 mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off) argument
48 * o off is not a multiple of the page size
53 if ((off & PAGE_MASK) ||
61 void *ptr = __mmap(addr, len, prot, flags, fildes, off);
/macosx-10.10.1/files-662.1.1/private/etc/
H A Dttys.embedded6 console "/usr/libexec/getty std.57600" vt100 off secure
14 # communications, the tty.serial entry should be turned off
15 # (set the 4th field to off).
16 tty.serial "/usr/libexec/getty serial.57600" vt100 off secure
18 # Fax reception is off by default, use the
20 fax "/usr/bin/fax answer" unknown off
22 # Hardwired lines are marked off, by default, so getty(8)
24 tty[00-07] "/usr/libexec/getty std.9600" unknown off secure

Completed in 235 milliseconds

1234567891011>>