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

1234567891011>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DPropertyOffset.h52 inline void checkOffset(PropertyOffset offset) argument
54 UNUSED_PARAM(offset);
55 ASSERT(offset >= invalidOffset);
58 inline void checkOffset(PropertyOffset offset, int inlineCapacity) argument
60 UNUSED_PARAM(offset);
62 ASSERT(offset >= invalidOffset);
63 ASSERT(offset == invalidOffset
64 || offset < inlineCapacity
65 || isOutOfLineOffset(offset));
68 inline void validateOffset(PropertyOffset offset) argument
74 validateOffset(PropertyOffset offset, int inlineCapacity) argument
80 isValidOffset(PropertyOffset offset) argument
86 isInlineOffset(PropertyOffset offset) argument
92 isOutOfLineOffset(PropertyOffset offset) argument
98 offsetInInlineStorage(PropertyOffset offset) argument
105 offsetInOutOfLineStorage(PropertyOffset offset) argument
112 offsetInRespectiveStorage(PropertyOffset offset) argument
119 numberOfOutOfLineSlotsForLastOffset(PropertyOffset offset) argument
127 numberOfSlotsForLastOffset(PropertyOffset offset, int inlineCapacity) argument
137 PropertyOffset offset = propertyNumber; local
[all...]
H A DDataView.h56 T get(unsigned offset, bool littleEndian, bool* status = 0) argument
59 if (offset + sizeof(T) > byteLength()) {
65 ASSERT_WITH_SECURITY_IMPLICATION(offset + sizeof(T) <= byteLength());
67 *reinterpret_cast<T*>(static_cast<uint8_t*>(m_baseAddress) + offset),
72 T read(unsigned& offset, bool littleEndian, bool* status = 0) argument
74 T result = this->template get<T>(offset, littleEndian, status);
76 offset += sizeof(T);
81 void set(unsigned offset, T value, bool littleEndian, bool* status = 0) argument
84 if (offset + sizeof(T) > byteLength()) {
90 ASSERT_WITH_SECURITY_IMPLICATION(offset
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/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.10.1/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.10.1/postfix-255/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.10.1/lukemftp-14/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.10.1/ICU-531.30/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.10.1/apr-32/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.10.1/JavaScriptCore-7600.1.17/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.10.1/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.10.1/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.10.1/ncurses-44/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.10.1/apr-32/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.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DJumpTable.cpp40 int32_t offset = branchOffsets[value - min]; local
41 if (offset)
42 return offset;
H A DValueRecovery.cpp38 return exec->r(virtualRegister().offset()).jsValue();
40 return jsNumber(exec->r(virtualRegister().offset()).unboxedInt32());
42 return jsNumber(exec->r(virtualRegister().offset()).unboxedInt52());
44 return jsNumber(exec->r(virtualRegister().offset()).unboxedStrictInt52());
46 return jsNumber(exec->r(virtualRegister().offset()).unboxedDouble());
48 return exec->r(virtualRegister().offset()).unboxedCell();
51 return exec->r(virtualRegister().offset()).jsValue();
53 return jsBoolean(exec->r(virtualRegister().offset()).unboxedBoolean());
95 out.printf("*%d", virtualRegister().offset());
98 out.printf("*int32(%d)", virtualRegister().offset());
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollation.cpp29 Collation::incTwoBytePrimaryByOffset(uint32_t basePrimary, UBool isCompressible, int32_t offset) { argument
31 // plus the offset, modulo the number of usable byte values, plus the minimum.
35 offset += ((int32_t)(basePrimary >> 16) & 0xff) - 4;
36 primary = (uint32_t)((offset % 251) + 4) << 16;
37 offset /= 251;
39 offset += ((int32_t)(basePrimary >> 16) & 0xff) - 2;
40 primary = (uint32_t)((offset % 254) + 2) << 16;
41 offset /= 254;
44 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
48 Collation::incThreeBytePrimaryByOffset(uint32_t basePrimary, UBool isCompressible, int32_t offset) { argument
123 int32_t offset = (c - (lower32 >> 8)) * (lower32 & 0x7f); // delta * increment local
[all...]
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];
/macosx-10.10.1/xnu-2782.1.97/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.10.1/tcl-105/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.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLRegisterAtOffset.h43 RegisterAtOffset(Reg reg, ptrdiff_t offset) argument
45 , m_offset(offset)
52 ptrdiff_t offset() const { return m_offset; } function in class:JSC::FTL::RegisterAtOffset
56 return reg() == other.reg() && offset() == other.offset();
63 return offset() < other.offset();
H A DFTLUnwindInfo.cpp75 int32_t offset = -((encoding & UNWIND_X86_64_RBP_FRAME_OFFSET) >> 16) * 8; local
86 m_registers.append(RegisterAtOffset(X86Registers::ebx, offset));
90 m_registers.append(RegisterAtOffset(X86Registers::r12, offset));
94 m_registers.append(RegisterAtOffset(X86Registers::r13, offset));
98 m_registers.append(RegisterAtOffset(X86Registers::r14, offset));
102 m_registers.append(RegisterAtOffset(X86Registers::r15, offset));
106 m_registers.append(RegisterAtOffset(X86Registers::ebp, offset));
113 offset += 8;
120 int32_t offset = 0; local
122 m_registers.append(RegisterAtOffset(ARM64Registers::x19, offset
[all...]
/macosx-10.10.1/libpcap-48/libpcap/
H A Dpcap-common.c1090 bpf_u_int32 offset = 0; local
1095 * "offset" is the offset *past* the field we're swapping;
1104 offset += 8; /* skip past id */
1105 if (hdr->caplen < offset)
1109 offset += 4; /* skip past various 1-byte fields */
1111 offset += 2; /* skip past bus_id */
1112 if (hdr->caplen < offset)
1116 offset += 2; /* skip past various 1-byte fields */
1118 offset
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A Ddb_iterator.c102 next_list_item(const char *source, int *offset) argument
110 if (ThisDbList != 0 && ThisDbSize && *offset < ThisDbSize) {
112 char *result = ThisDbList + *offset;
116 * Put a null on the marker if a separator was found. Set the offset
118 * again, using the data at the offset.
121 *offset += strlen(result) + 1;
122 marker = result + *offset;
125 *offset = marker - ThisDbList;
134 #define NEXT_DBD(var, offset) next_list_item((*offset
142 _nc_next_db(DBDIRS * state, int *offset) argument
221 _nc_first_db(DBDIRS * state, int *offset) argument
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/os/
H A Dos_truncate.c27 off_t offset; local
36 offset = (off_t)pgsize * pgno;
41 "fileops: truncate %s to %lu", fhp->name, (u_long)offset);
46 ret = DB_GLOBAL(j_ftruncate)(fhp->fd, offset);
49 RETRY_CHK((ftruncate(fhp->fd, offset)), ret);
56 __db_syserr(env, ret, "ftruncate: %lu", (u_long)offset);

Completed in 309 milliseconds

1234567891011>>