Searched defs:offset (Results 51 - 75 of 3590) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/main/
H A Dvarray.h50 GLsizeiptrARB offset = (GLsizeiptrARB) array->Ptr; local
53 if (offset < bufSize) {
54 array->_MaxElement = (bufSize - offset + array->StrideB
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DWriteListener.java4 * The <class>WriteListener</class> is used to get the offset of
6 * later needs an offset.
9 public void beforeWrite(long offset); argument
/external/openssh/
H A Dbuffer.h22 u_int offset; /* Offset of first byte containing data. */ member in struct:__anon24378
/external/proguard/src/proguard/classfile/instruction/
H A DInstructionFactory.java34 public static Instruction create(byte[] code, int offset) argument
38 int index = offset;
253 // Instructions with a branch offset operand.
290 throw new IllegalArgumentException("Unknown instruction opcode ["+opcode+"] at offset "+offset);
/external/skia/src/animator/
H A DSkTextOnPath.h24 SkScalar offset; member in class:SkTextOnPath
/external/srtp/crypto/include/
H A Daes_icm.h19 v128_t offset; /* initial offset value */ member in struct:__anon26897
/external/v8/test/mjsunit/
H A Dsubstr.js142 var offset = 0; variable
147 offset += i;
152 assertEquals(xl - offset, z.length);
153 offset -= i;
/external/valgrind/main/coregrind/m_dispatch/
H A Ddispatch-s390x-linux.S210 Compute offset (not index) into VT_(tt_fast):
212 offset = VG_TT_FAST_HASH(addr) * sizeof(FastCacheEntry) define
217 offset = ((addr >> 1) & VG_TT_FAST_MASK) << 4 define
219 offset = ((addr & (VG_TT_FAST_MASK << 1) ) << 3 define
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDESedeParameters.java26 * @param offset offset into the byte array the key starts at
31 int offset,
34 for (int i = offset; i < length; i += DES_KEY_LENGTH)
49 * @param offset offset into the byte array the key starts at
53 int offset)
55 return isWeakKey(key, offset, key.length - offset);
29 isWeakKey( byte[] key, int offset, int length) argument
51 isWeakKey( byte[] key, int offset) argument
/external/chromium_org/chrome/common/
H A Dspellcheck_marker.h16 return marker.offset < text_length_;
23 SpellCheckMarker() : hash(-1), offset(-1) {}
25 SpellCheckMarker(uint32 hash, size_t offset) : hash(hash), offset(offset) {} argument
28 size_t offset; member in class:SpellCheckMarker
/external/chromium_org/chrome/installer/util/
H A Dlanguage_selector.h31 // The offset of the matched language (i.e., IDS_L10N_OFFSET_*).
32 int offset() const { return offset_; } function in class:installer::LanguageSelector
40 // Returns the name of a translation given its offset.
41 static std::wstring GetLanguageName(int offset);
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_mac_dictionary_helper.h32 void set_offset(const gfx::Vector2d& offset) { offset_ = offset; } argument
44 // The extra offset to use while positioning the dicitonary panel.
/external/chromium_org/content/public/browser/
H A Ddownload_save_info.h17 // name, |offset| is set to the point where we left off, and |hash_state| will
35 // The file offset at which to start the download. May be 0.
36 int64 offset; member in struct:content::DownloadSaveInfo
/external/chromium_org/ppapi/cpp/dev/
H A Dgraphics_2d_dev.cc50 void Graphics2D_Dev::SetOffset(const pp::Point& offset) { argument
54 &offset.pp_point());
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertIntoTextNodeCommand.cpp37 InsertIntoTextNodeCommand::InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsigned offset, const String& text) argument
40 , m_offset(offset)
H A DSplitTextNodeCommand.h37 static PassRefPtr<SplitTextNodeCommand> create(PassRefPtr<Text> node, int offset) argument
39 return adoptRef(new SplitTextNodeCommand(node, offset));
43 SplitTextNodeCommand(PassRefPtr<Text>, int offset);
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);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DOutlineValue.h50 int offset() const { return m_offset; } function in class:WebCore::OutlineValue
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DScriptText.java11 public int getColumn(int offset) { argument
12 int lineStart = findLineStart(offset);
13 return lineStart == -1 ? -1 : offset - lineStart;
16 public String getLineTextAt(int offset) { argument
17 int lineStart = findLineStart(offset);
21 int lineEnd = text.indexOf('\n', offset);
28 private int findLineStart(int offset) { argument
29 if (offset > text.length()) {
32 return text.lastIndexOf('\n', offset) + 1;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DGlyphPageTreeNodeSkia.cpp43 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) argument
58 setGlyphDataForIndex(offset + i, glyphs[i], glyphs[i] ? fontData : NULL);
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DMockGrammarCheck.cpp73 size_t offset = 0; local
75 while ((offset = stringText.find(error, offset)) != string16::npos) {
76 results->push_back(WebTextCheckingResult(WebTextDecorationTypeGrammar, offset + grammarErrors[i].location, grammarErrors[i].length));
77 offset += grammarErrors[i].length;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_mman.h64 static INLINE void *os_mmap(void *addr, size_t length, int prot, int flags, int fd, loff_t offset) argument
66 /* offset must be aligned to 4096 (not necessarily the page size) */
67 if (unlikely(offset & 4095)) {
72 return __mmap2(addr, length, prot, flags, fd, (size_t) (offset >> 12));
77 # define os_mmap(addr, length, prot, flags, fd, offset) mmap(addr, length, prot, flags, fd, offset)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_scratch.h37 int offset; member in struct:nouveau_scratch_state
43 struct nouveau_bo **bo, unsigned *offset);
/external/chromium_org/third_party/skia/include/core/
H A DSkBitmapDevice.h202 SkPixelRef* setPixelRef(SkPixelRef* pr, size_t offset) { argument
203 fBitmap.setPixelRef(pr, offset);
244 * the result (and updates offset as needed).
246 * it just returns false and leaves result and offset unchanged.
249 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE;
/external/chromium_org/ui/gfx/
H A Dutf16_indexing.cc35 ptrdiff_t offset) {
42 while (offset > 0 && pos < s.length())
43 offset -= IsValidCodePointIndex(s, pos++) ? 1 : 0;
44 while (offset < 0 && pos > 0)
45 offset += IsValidCodePointIndex(s, --pos) ? 1 : 0;
46 // If offset != 0 then we ran off the edge of the string, which is a contract
48 DCHECK_EQ(offset, 0);
33 UTF16OffsetToIndex(const base::string16& s, size_t base, ptrdiff_t offset) argument

Completed in 3175 milliseconds

1234567891011>>