HomeSort by relevance Sort by last modified time
    Searched refs:baseAddress (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/WebCore/html/canvas/
WebGLArray.cpp 54 char* base = static_cast<char*>(baseAddress());
55 memcpy(base + byteOffset, array->baseAddress(), array->byteLength());
WebGLArray.h 51 void* baseAddress() {
WebGLByteArray.h 48 char* data() { return static_cast<char*>(baseAddress()); }
WebGLFloatArray.h 45 float* data() { return static_cast<float*>(baseAddress()); }
WebGLIntArray.h 46 int* data() { return static_cast<int*>(baseAddress()); }
WebGLShortArray.h 45 short* data() { return static_cast<short*>(baseAddress()); }
WebGLUnsignedByteArray.h 46 unsigned char* data() { return static_cast<unsigned char*>(baseAddress()); }
WebGLUnsignedIntArray.h 46 unsigned int* data() { return static_cast<unsigned int*>(baseAddress()); }
WebGLUnsignedShortArray.h 46 unsigned short* data() { return static_cast<unsigned short*>(baseAddress()); }
WebGLBuffer.cpp 122 memcpy(static_cast<unsigned char*>(m_elementArrayBuffer->data()) + offset, array->baseAddress(), array->byteLength());
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 102 int baseAddress = user.getAddress();
124 relTarget = targets[caseAt].getAddress() - baseAddress;
139 int relTarget = targets[i].getAddress() - baseAddress;
179 int baseAddress = user.getAddress();
185 sb.append(Hex.u2(baseAddress));
189 int relTarget = absTarget - baseAddress;
ArrayData.java 182 int baseAddress = user.getAddress();
187 sb.append(Hex.u2(baseAddress));
  /external/webkit/WebCore/bindings/v8/custom/
V8WebGLByteArrayCustom.cpp 71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalByteArray, impl->length());
V8WebGLFloatArrayCustom.cpp 71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalFloatArray, impl->length());
V8WebGLIntArrayCustom.cpp 71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalIntArray, impl->length());
V8WebGLShortArrayCustom.cpp 71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalShortArray, impl->length());
V8WebGLUnsignedByteArrayCustom.cpp 71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalUnsignedByteArray, impl->length());
V8WebGLUnsignedIntArrayCustom.cpp 71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalUnsignedIntArray, impl->length());
V8WebGLUnsignedShortArrayCustom.cpp 71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalUnsignedShortArray, impl->length());
V8WebGLArrayCustom.h 103 array.get()->baseAddress(),
136 array.get()->baseAddress(),
  /external/icu4c/layout/
LookupProcessor.cpp 121 LookupProcessor::LookupProcessor(const char *baseAddress,
139 scriptListTable = (const ScriptListTable *) (baseAddress + scriptListOffset);
148 featureListTable = (const FeatureListTable *) (baseAddress + featureListOffset);
152 lookupListTable = (const LookupListTable *) (baseAddress + lookupListOffset);
LookupProcessor.h 49 LookupProcessor(const char *baseAddress,
  /libcore/luni/src/main/java/java/nio/
DirectByteBuffer.java 74 PlatformAddress baseAddress = address.address;
75 long baseSize = baseAddress.getSize();
  /external/webkit/WebKit/chromium/src/
GraphicsContext3D.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContext3DMac.cpp 329 ::glBufferData(target, array->byteLength(), array->baseAddress(), usage);
338 ::glBufferSubData(target, offset, array->byteLength(), array->baseAddress());
    [all...]

Completed in 801 milliseconds

1 2