Searched refs:offset (Results 101 - 125 of 3483) sorted by relevance

1234567891011>>

/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOSubMemoryDescriptor.cpp47 IOByteCount offset,
53 if (self && !self->initSubRange(of, offset, length, (IODirection) options)) {
61 IOByteCount offset, IOByteCount length,
64 if( parent && ((offset + length) > parent->getLength()))
93 _start = offset;
112 IOSubMemoryDescriptor::getPhysicalSegment(IOByteCount offset, IOByteCount * length, IOOptionBits options) argument
117 assert(offset <= _length);
122 if( offset >= _length)
125 address = _parent->getPhysicalSegment( offset + _start, &actualLength, options );
128 *length = min( _length - offset, actualLengt
46 withSubRange(IOMemoryDescriptor * of, IOByteCount offset, IOByteCount length, IOOptionBits options) argument
60 initSubRange( IOMemoryDescriptor * parent, IOByteCount offset, IOByteCount length, IODirection direction ) argument
163 makeMapping( IOMemoryDescriptor * owner, task_t intoTask, IOVirtualAddress address, IOOptionBits options, IOByteCount offset, IOByteCount length ) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/libsyscall/wrappers/legacy/
H A Dmprotect.c46 size_t offset; local
54 offset = ((uintptr_t) addr) & PAGE_MASK;
56 len += offset;
H A Dmunmap.c46 size_t offset; local
61 offset = ((uintptr_t) addr) & PAGE_MASK;
63 len += offset;
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dtype.c43 int offset, /* Offset in file */ member in struct:_mime_filebuf_s
522 temp->offset = strtol(value[0], NULL, 0);
529 temp->offset = strtol(value[0], NULL, 0);
536 temp->offset = strtol(value[0], NULL, 0);
542 DEBUG_printf(("1mimeAddTypeRule: CHAR(%d,0x%02x)", temp->offset,
546 temp->offset = strtol(value[0], NULL, 0);
550 temp->offset = strtol(value[0], NULL, 0);
560 temp->offset = strtol(value[0], NULL, 0);
618 fb.offset = -1;
774 if (fb->offset <
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dsetenv.c48 * Starts searching within the environmental array at offset.
49 * Sets offset to be the offset of the name/value combination in the
56 __findenv(const char *name, int len, int *offset) argument
65 for (p = environ + *offset; (cp = *p) != NULL; ++p) {
70 *offset = p - environ;
88 int offset = 0;
97 if (__findenv(str, (int)(cp - str), &offset) != NULL) {
98 environ[offset++] = str;
100 while (__findenv(str, (int)(cp - str), &offset)) {
136 int l_value, offset = 0; local
202 int offset = 0; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/win32/
H A Dseek.c72 APR_DECLARE(apr_status_t) apr_file_seek(apr_file_t *thefile, apr_seek_where_t where, apr_off_t *offset)
82 rc = setptr(thefile, *offset);
87 + thefile->bufpos + *offset);
93 rc = setptr(thefile, finfo.size + *offset);
100 *offset = thefile->filePtr - thefile->dataRead + thefile->bufpos;
109 thefile->filePtr = *offset;
113 thefile->filePtr += *offset;
118 if (rc == APR_SUCCESS && finfo.size + *offset >= 0)
119 thefile->filePtr = finfo.size + *offset;
125 *offset
[all...]
/macosx-10.9.5/apr-30/apr/apr/file_io/win32/
H A Dseek.c72 APR_DECLARE(apr_status_t) apr_file_seek(apr_file_t *thefile, apr_seek_where_t where, apr_off_t *offset)
82 rc = setptr(thefile, *offset);
87 + thefile->bufpos + *offset);
93 rc = setptr(thefile, finfo.size + *offset);
100 *offset = thefile->filePtr - thefile->dataRead + thefile->bufpos;
109 thefile->filePtr = *offset;
113 thefile->filePtr += *offset;
118 if (rc == APR_SUCCESS && finfo.size + *offset >= 0)
119 thefile->filePtr = finfo.size + *offset;
125 *offset
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dutf8tst.c199 uint32_t offset=0; local
201 for(offset=0; offset<sizeof(input); offset++) {
202 if (offset < sizeof(input) - 1) {
203 UTF8_GET_CHAR_UNSAFE(input, offset, c);
205 log_err("ERROR: UTF8_GET_CHAR_UNSAFE failed for offset=%ld. Expected:%lx Got:%lx\n", offset, result[i], c);
209 U8_GET_UNSAFE(input, offset, c);
211 log_err("ERROR: U8_GET_UNSAFE failed for offset
287 uint32_t offset=0; local
529 uint32_t offset; local
661 int32_t offset; local
731 int32_t offset=0, setOffset=0; local
772 int32_t offset=0, setOffset=0; local
912 uint32_t offset; local
[all...]
/macosx-10.9.5/objc4-551.1/runtime/Accessors.subproj/
H A Dobjc-accessors.mm59 id objc_getProperty_non_gc(id self, SEL _cmd, ptrdiff_t offset, BOOL atomic) {
61 id *slot = (id*) ((char*)self + offset);
75 static inline void reallySetProperty(id self, SEL _cmd, id newValue, ptrdiff_t offset, bool atomic, bool copy, bool mutableCopy) __attribute__((always_inline));
77 static inline void reallySetProperty(id self, SEL _cmd, id newValue, ptrdiff_t offset, bool atomic, bool copy, bool mutableCopy)
80 id *slot = (id*) ((char*)self + offset);
105 void objc_setProperty_non_gc(id self, SEL _cmd, ptrdiff_t offset, id newValue, BOOL atomic, signed char shouldCopy)
109 reallySetProperty(self, _cmd, newValue, offset, atomic, copy, mutableCopy);
112 void objc_setProperty_atomic(id self, SEL _cmd, id newValue, ptrdiff_t offset)
114 reallySetProperty(self, _cmd, newValue, offset, true, false, false);
117 void objc_setProperty_nonatomic(id self, SEL _cmd, id newValue, ptrdiff_t offset)
[all...]
/macosx-10.9.5/file-46/file/src/
H A Dsoftmagic.c134 ms->offset = m->offset;
208 ms->offset = m->offset;
210 ms->offset +=
381 t = ms->offset + sizeof(char);
403 t = ms->offset + sizeof(short);
424 t = ms->offset + sizeof(int32_t);
433 t = ms->offset + sizeof(int64_t);
443 t = ms->offset
908 mdebug(uint32_t offset, const char *str, size_t len) argument
917 mcopy(struct magic_set *ms, union VALUETYPE *p, int type, int indir, const unsigned char *s, uint32_t offset, size_t nbytes, size_t linecnt) argument
1030 uint32_t offset = ms->offset; local
[all...]
/macosx-10.9.5/cctools-845/misc/
H A Dpagestuff.c43 uint64_t offset; member in struct:file_part
124 uint64_t offset; member in struct:mach_o_part
139 /* The -arch flag if any, and its offset and size in the file */
297 fp->offset = 0;
304 fp->offset = 0;
322 arch_offset = ofile.fat_archs[ofile.narch].offset;
328 fp->offset = ofile.fat_archs[ofile.narch].offset;
356 fp->offset = 0;
389 if(new->offset >
456 uint64_t offset; local
1107 uint32_t offset; local
1144 uint64_t offset, size, low_addr, high_addr, new_low_addr, new_high_addr; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dparseerr.h34 * <p>The line, offset, and context fields are optional; parsing
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
70 * this is the offset from the start of the text. If the parser
74 int32_t offset; member in struct:UParseError
/macosx-10.9.5/JavaScriptCore-7537.78.1/icu/unicode/
H A Dparseerr.h34 * <p>The line, offset, and context fields are optional; parsing
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
70 * this is the offset from the start of the text. If the parser
74 int32_t offset; member in struct:UParseError
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DPutPropertySlot.h1 // -*- mode: c++; c-basic-offset: 4 -*-
48 void setExistingProperty(JSObject* base, PropertyOffset offset) argument
52 m_offset = offset;
55 void setNewProperty(JSObject* base, PropertyOffset offset) argument
59 m_offset = offset;
/macosx-10.9.5/WebCore-7537.78.1/icu/unicode/
H A Dparseerr.h34 * <p>The line, offset, and context fields are optional; parsing
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
70 * this is the offset from the start of the text. If the parser
74 int32_t offset; member in struct:UParseError
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/transforms/
H A DTransformState.cpp53 void TransformState::translateTransform(const LayoutSize& offset) argument
56 m_accumulatedTransform->translateRight(offset.width(), offset.height());
58 m_accumulatedTransform->translate(offset.width(), offset.height());
61 void TransformState::translateMappedCoordinates(const LayoutSize& offset) argument
63 LayoutSize adjustedOffset = (m_direction == ApplyTransformDirection) ? offset : -offset;
70 void TransformState::move(const LayoutSize& offset, TransformAccumulation accumulate) argument
73 m_accumulatedOffset += offset;
92 LayoutSize offset = m_accumulatedOffset; local
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/icu/unicode/
H A Dparseerr.h34 * <p>The line, offset, and context fields are optional; parsing
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
70 * this is the offset from the start of the text. If the parser
74 int32_t offset; member in struct:UParseError
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKDOMRange.h38 - (void)setStart:(WKDOMNode *)node offset:(int)offset;
39 - (void)setEnd:(WKDOMNode *)node offset:(int)offset;
/macosx-10.9.5/misc_cmds-32/calendar/
H A Dpaskha.c65 int offset; local
84 offset = atoi(s);
88 offset = 0;
92 return (paskha(year) + offset + 13/* new style */);
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tinfo/
H A DMKcaptab.awk31 offsets[num_strings] = offset;
32 offset = offset + length(text) + 1;
47 offset = 0;
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dheader_token.h27 ssize_t offset; /* index into token buffer */ member in union:HEADER_TOKEN::__anon11752
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/TLayer/
H A DShadowOffsetView.py20 def offset(self): member in class:ShadowOffsetView
23 def setOffset_(self, offset):
24 offset = CGSizeMake(offset.width / self._scale, offset.height / self._scale);
25 if self._offset != offset:
26 self._offset = offset;
34 offset = CGSize(
37 radius = math.sqrt(offset.width * offset
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/TLayer/
H A DShadowOffsetView.py20 def offset(self): member in class:ShadowOffsetView
23 def setOffset_(self, offset):
24 offset = CGSizeMake(offset.width / self._scale, offset.height / self._scale);
25 if self._offset != offset:
26 self._offset = offset;
34 offset = CGSize(
37 radius = math.sqrt(offset.width * offset
[all...]
/macosx-10.9.5/ruby-104/ruby/nacl/
H A Ddirent.h13 void seekdir(DIR *dirp, long offset);
/macosx-10.9.5/smb-697.95.1/lib/smb/
H A Dfile.c40 smb_read(struct smb_ctx *ctx, smbfh fh, off_t offset, uint32_t count, char *dst) argument
49 rwrq.ioc_offset = offset;
57 smb_write(struct smb_ctx *ctx, smbfh fh, off_t offset, uint32_t count, const char *src) argument
66 rwrq.ioc_offset = offset;

Completed in 168 milliseconds

1234567891011>>