Searched refs:offset (Results 1 - 25 of 3483) sorted by relevance

1234567891011>>

/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DPropertyOffset.h53 inline void checkOffset(PropertyOffset offset) argument
55 UNUSED_PARAM(offset);
56 ASSERT(offset >= invalidOffset);
59 inline void checkOffset(PropertyOffset offset, int inlineCapacity) argument
61 UNUSED_PARAM(offset);
63 ASSERT(offset >= invalidOffset);
64 ASSERT(offset == invalidOffset
65 || offset < inlineCapacity
66 || isOutOfLineOffset(offset));
69 inline void validateOffset(PropertyOffset offset) argument
75 validateOffset(PropertyOffset offset, int inlineCapacity) argument
81 isValidOffset(PropertyOffset offset) argument
87 isInlineOffset(PropertyOffset offset) argument
93 isOutOfLineOffset(PropertyOffset offset) argument
99 offsetInInlineStorage(PropertyOffset offset) argument
106 offsetInOutOfLineStorage(PropertyOffset offset) argument
113 offsetInRespectiveStorage(PropertyOffset offset) argument
120 numberOfOutOfLineSlotsForLastOffset(PropertyOffset offset) argument
128 numberOfSlotsForLastOffset(PropertyOffset offset, int inlineCapacity) argument
138 PropertyOffset offset = propertyNumber; local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/unittests/Support/
H A DDataExtractorTest.cpp28 uint32_t offset = 0; local
30 EXPECT_EQ(0x80U, DE.getU8(&offset));
31 EXPECT_EQ(1U, offset);
32 offset = 0;
33 EXPECT_EQ(0x8090U, DE.getU16(&offset));
34 EXPECT_EQ(2U, offset);
35 offset = 0;
36 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset));
37 EXPECT_EQ(4U, offset);
38 offset
76 uint32_t offset = 0; local
93 uint32_t offset = 0; local
103 uint32_t offset = 0; local
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DLogSequenceNumber.java17 and the other specifies the offset in the log file.
21 private int offset; field in class:LogSequenceNumber
24 Construct a LogSequenceNumber with the specified file and offset.
29 @param offset
30 The log file offset.
32 public LogSequenceNumber(final int file, final int offset) { argument
34 this.offset = offset;
55 Return the file offset component of the LogSequenceNumber.
58 The file offset componen
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Ddeliver_completed.c9 /* void deliver_completed(stream, offset)
11 /* long offset;
14 /* an open queue file. A -1 offset means ignore the request -
47 void deliver_completed(VSTREAM *stream, long offset) argument
51 if (offset == -1)
54 if (offset <= 0)
55 msg_panic("%s: bad offset %ld", myname, offset);
57 if (rec_put_type(stream, REC_TYPE_DONE, offset) < 0
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dfseeko.c33 fseeko(FILE *stream, off_t offset, int whence) argument
35 if (offset > (off_t)LONG_MAX) {
39 return (fseek(stream, (long) offset, whence));
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dunifilt.cpp37 * filters. Matches a single code point at offset (either one or
41 int32_t& offset,
45 if (offset < limit &&
46 contains(c = text.char32At(offset))) {
47 offset += U16_LENGTH(c);
50 if (offset > limit &&
51 contains(c = text.char32At(offset))) {
52 // Backup offset by 1, unless the preceding character is a
53 // surrogate pair -- then backup by 2 (keep offset pointing at
55 --offset;
40 matches(const Replaceable& text, int32_t& offset, int32_t limit, UBool incremental) argument
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/mmap/unix/
H A Dcommon.c34 apr_off_t offset)
36 if (offset < 0 || (apr_size_t)offset > mmap->size)
39 (*addr) = (char *) mmap->mm + offset;
/macosx-10.9.5/apr-30/apr/apr/mmap/unix/
H A Dcommon.c34 apr_off_t offset)
36 if (offset < 0 || (apr_size_t)offset > mmap->size)
39 (*addr) = (char *) mmap->mm + offset;
/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DCodeLocation.h51 // at an offset from one you already know. When patching code to optimize it
58 CodeLocationInstruction instructionAtOffset(int offset);
59 CodeLocationLabel labelAtOffset(int offset);
60 CodeLocationJump jumpAtOffset(int offset);
61 CodeLocationCall callAtOffset(int offset);
62 CodeLocationNearCall nearCallAtOffset(int offset);
63 CodeLocationDataLabelPtr dataLabelPtrAtOffset(int offset);
64 CodeLocationDataLabel32 dataLabel32AtOffset(int offset);
65 CodeLocationDataLabelCompact dataLabelCompactAtOffset(int offset);
66 CodeLocationConvertibleLoad convertibleLoadAtOffset(int offset);
160 instructionAtOffset(int offset) argument
166 labelAtOffset(int offset) argument
172 jumpAtOffset(int offset) argument
178 callAtOffset(int offset) argument
184 nearCallAtOffset(int offset) argument
190 dataLabelPtrAtOffset(int offset) argument
196 dataLabel32AtOffset(int offset) argument
202 dataLabelCompactAtOffset(int offset) argument
208 convertibleLoadAtOffset(int offset) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextInsertionBaseCommand.h54 unsigned offset = 0; local
56 while ((newline = string.find('\n', offset)) != notFound) {
57 operation(offset, newline - offset, false);
58 offset = newline + 1;
60 if (!offset)
64 if (length != offset)
65 operation(offset, length - offset, true);
H A DSplitTextNodeContainingElementCommand.h35 static PassRefPtr<SplitTextNodeContainingElementCommand> create(PassRefPtr<Text> node, int offset) argument
37 return adoptRef(new SplitTextNodeContainingElementCommand(node, offset));
41 SplitTextNodeContainingElementCommand(PassRefPtr<Text>, int offset);
/macosx-10.9.5/BerkeleyDB-21/db/db_printlog/
H A Drange.awk11 offset = substr($1, start, l - start + 1);
12 i = index(offset, "]");
13 offset = substr($1, start, i - 1);
14 offset += 0;
16 if ((file == START_FILE && offset >= START_OFFSET || file > START_FILE)\
17 && (file < END_FILE || (file == END_FILE && offset < END_OFFSET)))
19 else if (file == END_FILE && offset > END_OFFSET || file > END_FILE)
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/util/
H A DPackedInteger.java50 * Reads a packed integer at the given buffer offset and returns it.
54 * @param off the offset in the buffer at which to start reading.
89 * Reads a packed long integer at the given buffer offset and returns it.
93 * @param off the offset in the buffer at which to start reading.
144 * buffer. This method only accesses one byte at the given offset.</p>
148 * @param off the offset in the buffer at which to start reading.
169 * buffer. This method only accesses one byte at the given offset.</p>
173 * @param off the offset in the buffer at which to start reading.
184 * Writes a packed integer starting at the given buffer offset and returns
185 * the next offset t
195 writeInt(byte[] buf, int offset, int value) argument
247 writeLong(byte[] buf, int offset, long value) argument
[all...]
/macosx-10.9.5/ncurses-42/ncurses/ncurses/base/
H A DMKunctrl.awk53 offset=0
69 printf "%4d%s", offset, gap;
72 offset = offset + 3;
75 offset = offset + 3;
78 offset = offset + 3;
81 offset = offset
[all...]
H A DMKkeyname.awk42 print "struct kn { short offset; int code; };"
45 printf "\t{ %d, %s },\n", offset, $1
46 offset += length($1) + 1
81 print " for (i = 0; _nc_key_names[i].offset != -1; i++) {"
83 print " result = (NCURSES_CONST char *)key_names + _nc_key_names[i].offset;"
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGStopElement.idl29 readonly attribute SVGAnimatedNumber offset;
H A DElementTimeControl.idl33 void beginElementAt([Default=Undefined] optional float offset);
35 void endElementAt([Default=Undefined] optional float offset);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/win32/
H A Dflock.c33 OVERLAPPED offset;
34 memset (&offset, 0, sizeof(offset));
35 if (!LockFileEx(thefile->filehand, flags, 0, len, len, &offset))
74 OVERLAPPED offset;
75 memset (&offset, 0, sizeof(offset));
76 if (!UnlockFileEx(thefile->filehand, 0, len, len, &offset))
/macosx-10.9.5/apr-30/apr/apr/file_io/win32/
H A Dflock.c33 OVERLAPPED offset;
34 memset (&offset, 0, sizeof(offset));
35 if (!LockFileEx(thefile->filehand, flags, 0, len, len, &offset))
74 OVERLAPPED offset;
75 memset (&offset, 0, sizeof(offset));
76 if (!UnlockFileEx(thefile->filehand, 0, len, len, &offset))
/macosx-10.9.5/cctools-845/include/coff/
H A Dbase_relocs.h20 * by makerelocs(1) and offset and size are found in the Mach-O section header
33 * added to each offset to create the VA
56 * offset from the starting address that was
58 * This offset specifies where the base relocation
64 offset:12; member in struct:base_relocation_entry
66 uint16_t offset:12,
76 32-bit field at offset. */
79 offset. */
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DStyleSurroundData.cpp35 , offset(o.offset)
44 return offset == o.offset && margin == o.margin && padding == o.padding && border == o.border;
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DJumpTable.cpp40 int32_t offset = branchOffsets[value - min]; local
41 if (offset)
42 return offset;
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dbits.c113 int offset, mask; local
115 for (offset = 0; !*s; offset += INT_SIZE, ++s)
117 for (mask = 1; mask; mask <<= 1, ++offset)
119 return (offset);
/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DParseQTAtoms.tcl15 set offset 12
16 foreach {size type id count} [ParseQTAtomHeader $fd $offset] {break}
17 set offset 32
19 foreach {size type} [ParseAtom $fd $offset] {break}
20 incr offset $size
39 proc ::quicktimetcl::ParseContainerAtom {fd {offset 0}} {
42 seek $fd $offset
49 proc ::quicktimetcl::ParseQTAtomHeader {fd {offset 0}} {
51 seek $fd $offset
58 proc ::quicktimetcl::ParseAtom {fd {offset
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dregextxt.cpp18 uregex_utext_unescape_charAt(int32_t offset, void *ct) { argument
21 if (offset == context->lastOffset + 1) {
24 } else if (offset == context->lastOffset) {
28 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
30 context->lastOffset = offset;
42 uregex_ucstr_unescape_charAt(int32_t offset, void *context) { argument
43 return ((UChar *)context)[offset];

Completed in 425 milliseconds

1234567891011>>