HomeSort by relevance Sort by last modified time
    Searched defs:byteOffset (Results 1 - 12 of 12) sorted by null

  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
DOMLocatorImpl.java 25 private final int byteOffset;
33 this.byteOffset = src.getByteOffset();
60 return byteOffset;
  /external/webkit/WebCore/html/canvas/
WebGLArray.h 55 unsigned byteOffset() const {
66 WebGLArray(PassRefPtr<WebGLArrayBuffer> buffer, unsigned byteOffset);
68 void setImpl(WebGLArray* array, unsigned byteOffset, ExceptionCode& ec);
  /hardware/ti/omap3/libstagefrighthw/
TIHardwareRenderer.cpp 90 static inline const void *byteOffset(const void* p, size_t offset) {
101 const uint16_t* uSrc = (const uint16_t*) byteOffset(src, pixelCount);
102 const uint16_t* vSrc = (const uint16_t*) byteOffset(uSrc, pixelCount >> 2);
  /external/opencore/android/samples/
android_surface_output_fb.cpp 290 static inline void* byteOffset(void* p, size_t offset) { return (void*)((uint8_t*)p + offset); }
300 uint16_t* pu = (uint16_t*)byteOffset(src, y_plane_size);
301 uint16_t* pv = (uint16_t*)byteOffset(pu, y_plane_size / 4);
302 uint32_t* p = (uint32_t*)byteOffset(dst, y_plane_size);
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmSmsTest.java 229 int byteOffset = bitOffset / 8;
232 septets[byteOffset] |= v << shift;
235 septets[byteOffset + 1] = (byte) (v >> (8 - shift));
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 267 int byteOffset = bitOffset / 8;
270 packedChars[++byteOffset] |= value << shift;
273 packedChars[++byteOffset] = (byte)(value >> (8 - shift));
317 int byteOffset = bitOffset / 8;
321 gsmVal = (0x7f & (pdu[offset + byteOffset] >> shift));
328 gsmVal |= 0x7f & (pdu[offset + byteOffset + 1] << (8 - shift));
  /hardware/ti/omap3/libopencorehw/
android_surface_output_omap34xx.cpp 400 static inline void* byteOffset(void* p, size_t offset) { return (void*)((uint8_t*)p + offset); }
410 uint16_t* uSrc = (uint16_t*) byteOffset(src, pixelCount);
411 uint16_t* vSrc = (uint16_t*) byteOffset(uSrc, pixelCount >> 2);
  /external/opencore/engines/adapters/player/framemetadatautility/src/
pv_frame_metadata_mio_video.cpp     [all...]
  /dalvik/vm/analysis/
DexOptimize.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/tests/
WmaDecTest.c     [all...]
  /dalvik/vm/oo/
Object.h 193 #define _CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset) \
194 (((unsigned int)(byteOffset) - CLASS_SMALLEST_OFFSET) / \
199 #define CLASS_CAN_ENCODE_OFFSET(byteOffset) \
200 (_CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset) < CLASS_BITS_PER_WORD)
205 #define CLASS_BIT_FROM_OFFSET(byteOffset) \
206 (CLASS_HIGH_BIT >> _CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset))
590 * (Object *) to the actual instance data; e.g., byteOffset==0 is
591 * the same as the object pointer (bug!), and byteOffset==4 is 4
594 int byteOffset;
671 return pField->byteOffset;
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLLogWrapper.java     [all...]

Completed in 257 milliseconds