Searched defs:offset (Results 226 - 250 of 4056) sorted by relevance

1234567891011>>

/external/freetype/src/base/
H A Dftsystem.c189 /* offset :: The position in the data stream to start reading. */
202 unsigned long offset,
209 if ( !count && offset > stream->size )
214 if ( stream->pos != offset )
215 ft_fseek( file, offset, SEEK_SET );
201 ft_ansi_stream_io( FT_Stream stream, unsigned long offset, unsigned char* buffer, unsigned long count ) argument
/external/freetype/src/cff/
H A Dcf2arrst.c231 size_t offset = arrstack->count * arrstack->sizeItem; local
232 void* newPtr = (FT_Byte*)arrstack->ptr + offset;
/external/icu/icu4c/source/common/unicode/
H A Dparsepos.h61 * @param newIndex the new text offset.
212 ParsePosition::setIndex(int32_t offset) argument
214 this->index = offset;
/external/icu/icu4c/source/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...]
/external/icu/icu4c/source/layout/
H A DGXLayoutEngine.cpp32 le_int32 GXLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
38 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
43 mapCharsToGlyphs(chars, offset, count, FALSE, rightToLeft, glyphStorage, success);
55 void GXLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument
62 if (chars == NULL || offset < 0 || count < 0) {
H A DSegmentArrayProcessor.cpp47 le_int16 offset = SWAPW(lookupSegment->value); local
49 if (offset != 0) {
50 LEReferenceToArrayOf<TTGlyphID> glyphArray(subtableHeader, success, offset, LE_UNBOUNDED_ARRAY);
H A DSegmentArrayProcessor2.cpp47 le_int16 offset = SWAPW(lookupSegment->value); local
49 if (offset != 0) {
50 TTGlyphID *glyphArray = (TTGlyphID *) ((char *) subtableHeader.getAliasRAW() + offset);
/external/javasqlite/src/main/java/SQLite/
H A DStringEncoder.java199 * index offset, to the given target.
201 * @param offset the offset.
207 private static byte[] byteCopy(byte[] source, int offset, argument
209 for (int i = offset, j = 0; i < offset + count; i++, j++) {
/external/kernel-headers/original/uapi/linux/
H A Dion_test.h26 * @offset: offset into the ion buffer to start reading
32 __u64 offset; member in struct:ion_test_rw_data
/external/kernel-headers/original/uapi/linux/usb/
H A Df_mtp.h27 /* offset in file for start of transfer */
28 loff_t offset; member in struct:mtp_file_range
/external/libexif/libexif/pentax/
H A Dexif-mnote-data-pentax.h42 unsigned int offset; member in struct:_ExifMnoteDataPentax
/external/libopus/silk/fixed/
H A Dresidual_energy_FIX.c48 opus_int offset, i, j, rshift, lz1, lz2; local
56 offset = LPC_order + subfr_length;
59 ALLOC( LPC_res, ( MAX_NB_SUBFR >> 1 ) * offset, opus_int16 );
63 silk_LPC_analysis_filter( LPC_res, x_ptr, a_Q12[ i ], ( MAX_NB_SUBFR >> 1 ) * offset, LPC_order );
75 LPC_res_ptr += offset;
78 x_ptr += ( MAX_NB_SUBFR >> 1 ) * offset;
/external/libpng/
H A Dpngrio.c48 png_seek_data(png_structp png_ptr, png_uint_32 offset) argument
51 (*(png_ptr->seek_data_fn))(png_ptr, offset);
/external/libvpx/libvpx/test/
H A Dvp8_decrypt_test.cc30 ptrdiff_t offset) {
32 dst[i] = src[i] ^ test_key[(offset + i) & 15];
29 encrypt_buffer(const uint8_t *src, uint8_t *dst, size_t size, ptrdiff_t offset) argument
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFLocationDescription.cpp28 lldb::offset_t offset = 0; local
29 while (data.ValidOffset(offset))
40 if (print_dwarf_exp_op (s, data, &offset, address_size, dwarf_ref_size) == 1)
H A DDWARFLocationList.cpp21 DWARFLocationList::Dump(Stream &s, const DWARFCompileUnit* cu, const DataExtractor& debug_loc_data, lldb::offset_t offset) argument
27 while (debug_loc_data.ValidOffset(offset))
29 start_addr = debug_loc_data.GetMaxU64(&offset,addr_size);
30 end_addr = debug_loc_data.GetMaxU64(&offset,addr_size);
43 uint32_t loc_length = debug_loc_data.GetU16(&offset);
45 DataExtractor locationData(debug_loc_data, offset, loc_length);
48 offset += loc_length;
51 return offset;
72 DWARFLocationList::Size(const DataExtractor& debug_loc_data, lldb::offset_t offset) argument
74 const dw_offset_t debug_loc_offset = offset;
[all...]
/external/llvm/include/llvm/Support/
H A DDataExtractor.h42 /// Returns a pointer to a C String from the data at the offset
45 /// updated with the offset of the byte that follows the NULL
49 /// A pointer to an offset within the data that will be advanced
51 /// correctly. If the offset is out of bounds or there are not
52 /// enough bytes to extract this value, the offset will be left
56 /// A pointer to the C string value in the data. If the offset
58 /// offset plus the length of the C string is out of bounds,
65 /// Extract a single unsigned integer value and update the offset
74 /// A pointer to an offset within the data that will be advanced
76 /// correctly. If the offset i
348 isValidOffsetForDataOfSize(uint32_t offset, uint32_t length) const argument
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.cpp64 // If we've got an offset section go ahead and emit that now as well.
67 unsigned offset = 0; local
70 Asm.OutStreamer.EmitIntValue(offset, size);
71 offset += Entry->getKeyLength() + 1;
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.cpp52 STDMETHODIMP CMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
56 case STREAM_SEEK_SET: _pos = offset; break;
57 case STREAM_SEEK_CUR: _pos = _pos + offset; break;
58 case STREAM_SEEK_END: _pos = _totalLength + offset; break;
170 STDMETHODIMP COutMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
177 _absPos = offset;
180 _absPos += offset;
183 _absPos = _length + offset;
/external/lzma/CPP/7zip/Common/
H A DOffsetStream.cpp8 HRESULT COffsetOutStream::Init(IOutStream *stream, UInt64 offset) argument
10 _offset = offset;
12 return _stream->Seek(offset, STREAM_SEEK_SET, NULL);
20 STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin, argument
25 offset += _offset;
26 HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition);
/external/lzma/CS/7zip/Common/
H A DCRC.cs34 public void Update(byte[] data, uint offset, uint size) argument
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8);
42 static uint CalculateDigest(byte[] data, uint offset, uint size) argument
46 crc.Update(data, offset, size);
50 static bool VerifyDigest(uint digest, byte[] data, uint offset, uint size) argument
52 return (CalculateDigest(data, offset, size) == digest);
/external/lzma/Java/SevenZip/
H A DCRC.java30 public void Update(byte[] data, int offset, int size) argument
33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_aos_array.c46 * \param offset ptr offset
53 LLVMValueRef offset)
75 ptr = LLVMBuildGEP(builder, base_ptr, &offset, 1, "");
49 lp_build_fetch_rgba_aos_array(struct gallivm_state *gallivm, const struct util_format_description *format_desc, struct lp_type dst_type, LLVMValueRef base_ptr, LLVMValueRef offset) argument
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tile_soa.h61 * Return offset of the given pixel (and color channel) from the start
69 unsigned offset = iy + ix + c * TILE_C_STRIDE + local
71 return offset;
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_hw_context_priv.h44 unsigned offset; member in struct:r600_reg
57 int r600_state_sampler_init(struct r600_context *ctx, uint32_t offset);
58 void r600_context_pipe_state_set_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned offset);

Completed in 4651 milliseconds

1234567891011>>