Searched defs:Offset (Results 1 - 25 of 428) sorted by path

1234567891011>>

/external/aac/libAACdec/src/
H A Daac_rom.h136 UCHAR Offset; member in struct:__anon6
/external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
H A Dsbc_analysis.c914 SINT32 Offset,Offset2,ChOffset; local
942 Offset=(SINT32)(EncMaxShiftCounter-ShiftCounter);
946 s16X[3+Offset] = *ps16PcmBuf; ps16PcmBuf++;
947 s16X[2+Offset] = *ps16PcmBuf; ps16PcmBuf++;
948 s16X[1+Offset] = *ps16PcmBuf; ps16PcmBuf++;
949 s16X[0+Offset] = *ps16PcmBuf; ps16PcmBuf++;
953 s16X[3+Offset] = *ps16PcmBuf; ps16PcmBuf++;
954 s16X[Offset2+3+Offset] = *ps16PcmBuf; ps16PcmBuf++;
955 s16X[2+Offset] = *ps16PcmBuf; ps16PcmBuf++;
956 s16X[Offset2+2+Offset]
1005 SINT32 Offset,Offset2; local
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dbasic_types.cc13 void WebPoint::Offset(int x_, int y_) { function in class:WebPoint
/external/chromium_org/gpu/command_buffer/client/
H A Dfenced_allocator.h34 typedef unsigned int Offset; typedef in class:gpu::FencedAllocator
36 static const Offset kInvalidOffset = 0xffffffffU;
56 Offset Alloc(unsigned int size);
62 void Free(Offset offset);
70 void FreePendingToken(Offset offset, int32 token);
104 Offset offset;
123 BlockIndex GetBlockByOffset(Offset offset);
140 Offset AllocInBlock(BlockIndex index, unsigned int size);
172 FencedAllocator::Offset offset = allocator_.Alloc(size);
218 void *GetPointer(FencedAllocator::Offset offse
[all...]
H A Dring_buffer.h24 typedef unsigned int Offset; typedef in class:gpu::RingBuffer
33 RingBuffer(unsigned int alignment, Offset base_offset,
68 void* GetPointer(RingBuffer::Offset offset) const {
73 RingBuffer::Offset GetOffset(void* pointer) const {
91 Block(Offset _offset, unsigned int _size, State _state)
97 Offset offset;
114 Offset base_offset_;
117 Offset size_;
119 // Offset of first free byte.
120 Offset free_offset
[all...]
/external/chromium_org/ppapi/cpp/
H A Drect.cc28 Offset(left, top);
33 void Rect::Offset(int32_t horizontal, int32_t vertical) { function in class:pp::Rect
132 Offset(left, top);
137 void FloatRect::Offset(float horizontal, float vertical) { function in class:pp::FloatRect
H A Drect.h283 /// Offset() moves the rectangle by a horizontal and vertical distance.
289 void Offset(int32_t horizontal, int32_t vertical);
291 /// Offset() moves the rectangle by a horizontal and vertical distance.
295 void Offset(const Point& point) { function in class:pp::Rect
296 Offset(point.x(), point.y());
668 /// Offset() moves the rectangle by a horizontal and vertical distance.
674 void Offset(float horizontal, float vertical);
676 /// Offset() moves the rectangle by a horizontal and vertical distance.
680 void Offset(const FloatPoint& point) { function in class:pp::FloatRect
681 Offset(poin
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DSourceMap.js50 /** @type {!SourceMapV3.Offset} */ this.offset;
56 SourceMapV3.Offset = function()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeTypes.h59 typedef UInt16 Offset; typedef in namespace:blink::OpenType
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dtttypes.h125 /* Offset :: The offset of the table from the start of the TrueType */
134 FT_ULong Offset; /* table file offset */ member in struct:TT_TableRec_
425 /* caret_offset :: Offset in pixels to move the caret for */
786 * ULONG stringTable Offset (from start of BDF table) to string
799 * ULONG item_name Offset in string table to item name.
807 * ULONG item_value For strings => Offset into string table without
809 * For atoms => Offset into string table.
1360 /* first_point :: Offset of the current subglyph's first point. */
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-open-type-private.hh633 /* Offset, Null offset = 0 */
635 struct Offset : Type struct in namespace:OT
688 * Template subclasses of Offset that do the dereferencing.
693 struct OffsetTo : Offset<OffsetType>
851 /* Array of Offset's */
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglprocs.h39 GLuint Offset; member in struct:__anon13460
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Ddbghelp.h171 DWORD64 Offset; member in struct:_tagADDRESS64
181 DWORD Offset; member in struct:_tagADDRESS
187 a64->Offset = (ULONG64)(LONG64)(LONG)a32->Offset;
193 a32->Offset = (ULONG)a64->Offset;
H A Du_memory.h89 * Offset of a field in a struct, in bytes.
91 #define Offset(TYPE, MEMBER) ((uintptr_t)&(((TYPE *)NULL)->MEMBER)) macro
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILISelDAGToDAG.cpp70 bool SelectADDR8BitOffset(SDValue Addr, SDValue& Base, SDValue& Offset);
71 bool SelectADDRReg(SDValue Addr, SDValue& Base, SDValue& Offset);
72 bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset);
319 SDValue& Offset) {
342 Offset = CurDAG->getTargetConstant(OffsetNode->getZExtValue() >> 2,
351 Offset = CurDAG->getTargetConstant(0, MVT::i32);
356 SDValue &Offset)
365 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
373 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
379 Offset
318 SelectADDR8BitOffset(SDValue Addr, SDValue& Base, SDValue& Offset) argument
355 SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset) argument
383 SelectADDRReg(SDValue Addr, SDValue& Base, SDValue& Offset) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
H A Dtexture_builtins.py8 Offset = 2 variable
83 if variant & Offset:
97 if variant & Offset:
230 generate_fiu_sigs("txl", "1D", Offset)
231 generate_fiu_sigs("txl", "2D", Offset)
232 generate_fiu_sigs("txl", "3D", Offset)
233 generate_fiu_sigs("txl", "1DArray", Offset)
234 generate_fiu_sigs("txl", "2DArray", Offset)
235 generate_sigs("", "txl", "1DShadow", Offset | Single, 1);
236 generate_sigs("", "txl", "2DShadow", Offset | Singl
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h1094 GLboolean OffsetPoint; /**< Offset in GL_POINT mode */
1095 GLboolean OffsetLine; /**< Offset in GL_LINE mode */
1096 GLboolean OffsetFill; /**< Offset in GL_FILL mode */
1518 GLintptr Offset; /**< Mapped offset */ member in struct:gl_buffer_object
1765 * Offset into the output register of the data to output. For example,
1818 GLintptr Offset[MAX_FEEDBACK_BUFFERS]; member in struct:gl_transform_feedback_object
2253 unsigned int Offset; member in struct:gl_uniform_buffer_variable
3364 GLintptr Offset; member in struct:gl_uniform_buffer_binding
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/
H A Dfont.h33 // extracted out for easier reference from other classes. Offset is the
274 struct Offset { struct in class:sfntly::Font
H A Dfont_factory.h97 struct Offset { struct in class:sfntly::FontFactory
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbig_glyph_metrics.h27 struct Offset { struct in class:sfntly::BigGlyphMetrics
H A Dbitmap_glyph.h29 struct Offset { struct in class:sfntly::BitmapGlyph
H A Debdt_table.h29 struct Offset { struct in class:sfntly::EbdtTable
H A Deblc_table.h31 struct Offset { struct in class:sfntly::EblcTable
90 BitmapGlyph::Offset::kBigGlyphMetricsLength,
95 BigGlyphMetrics::Offset::kMetricsLength,
115 BitmapGlyph::Offset::kBigGlyphMetricsLength,
H A Debsc_table.h27 struct Offset { struct in class:sfntly::EbscTable
37 kBitmapScaleTable_vert = EblcTable::Offset::kSbitLineMetricsLength,
39 EblcTable::Offset::kSbitLineMetricsLength,
60 // Note: caller to do data->Slice(offset, Offset::kBitmapScaleTableLength)
H A Dsmall_glyph_metrics.h28 struct Offset { struct in class:sfntly::SmallGlyphMetrics

Completed in 7438 milliseconds

1234567891011>>