/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glGetShaderSource.java | 9 int sourceOffset
|
glGetShaderSource.cpp | 4 (JNIEnv *_env, jobject _this, jint shader, jint bufsize, jintArray length_ref, jint lengthOffset, jbyteArray source_ref, jint sourceOffset) { 34 if (sourceOffset < 0) { 37 _exceptionMessage = "sourceOffset < 0"; 40 _sourceRemaining = _env->GetArrayLength(source_ref) - sourceOffset; 43 source = source_base + sourceOffset;
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
VertexData.java | 51 * @param sourceOffset the offset to start copying the data from
53 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count);
|
VertexArray.java | 90 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
93 BufferUtils.copy(vertices, sourceOffset, count, byteBuffer);
|
VertexBufferObject.java | 153 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
157 BufferUtils.copy(vertices, sourceOffset, count, byteBuffer);
|
VertexBufferObjectSubData.java | 136 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
141 BufferUtils.copy(vertices, sourceOffset, count, byteBuffer);
|
VertexBufferObjectWithVAO.java | 119 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) { 123 BufferUtils.copy(vertices, sourceOffset, count, byteBuffer);
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
BoundedByteString.java | 119 protected void copyToInternal(byte[] target, int sourceOffset, 121 System.arraycopy(bytes, getOffsetIntoBytes() + sourceOffset, target,
|
ByteString.java | 473 * @param sourceOffset offset within these bytes 479 public void copyTo(byte[] target, int sourceOffset, int targetOffset, 481 if (sourceOffset < 0) { 482 throw new IndexOutOfBoundsException("Source offset < 0: " + sourceOffset); 490 if (sourceOffset + numberToCopy > size()) { 492 "Source end offset < 0: " + (sourceOffset + numberToCopy)); 499 copyToInternal(target, sourceOffset, targetOffset, numberToCopy); 509 protected abstract void copyToInternal(byte[] target, int sourceOffset, 550 * @param sourceOffset offset within these bytes 556 void writeTo(OutputStream out, int sourceOffset, int numberToWrite [all...] |
RopeByteString.java | 358 protected void copyToInternal(byte[] target, int sourceOffset, 360 if (sourceOffset + numberToCopy <= leftLength) { 361 left.copyToInternal(target, sourceOffset, targetOffset, numberToCopy); 362 } else if (sourceOffset >= leftLength) { 363 right.copyToInternal(target, sourceOffset - leftLength, targetOffset, 366 int leftLength = this.leftLength - sourceOffset; 367 left.copyToInternal(target, sourceOffset, targetOffset, leftLength); 405 void writeToInternal(OutputStream out, int sourceOffset, 407 if (sourceOffset + numberToWrite <= leftLength) { 408 left.writeToInternal(out, sourceOffset, numberToWrite) [all...] |
LiteralByteString.java | 113 protected void copyToInternal(byte[] target, int sourceOffset, 117 System.arraycopy(bytes, sourceOffset, target, targetOffset, numberToCopy); 146 void writeToInternal(OutputStream outputStream, int sourceOffset, 148 outputStream.write(bytes, getOffsetIntoBytes() + sourceOffset,
|
/external/tpm2/ |
NVMem.c | 226 unsigned int sourceOffset, // IN: source offset 231 assert(sourceOffset + size <= NV_MEMORY_SIZE); 234 memmove(&s_NV[destOffset], &s_NV[sourceOffset], size);
|
/libcore/ojluni/src/main/java/java/text/ |
MessageFormat.java | [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/micro/ |
ByteStringMicro.java | 134 * @param sourceOffset offset within these bytes 138 public void copyTo(final byte[] target, final int sourceOffset, 141 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetASCII.java | 60 int sourceOffset = source.arrayOffset(); 61 int sourceIndex = oldSource + sourceOffset; 216 int sourceOffset = source.arrayOffset(); 217 int sourceIndex = oldSource + sourceOffset;
|
/external/tpm2/include/tpm2/ |
Platform.h | 239 unsigned int sourceOffset, // IN: source offset
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
MessageFormat.java | [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
MessageFormat.java | [all...] |
/external/messageformat/java/com/ibm/icu/simple/ |
MessageFormat.java | [all...] |
/libcore/luni/src/main/native/ |
libcore_icu_NativeConverter.cpp | 208 jint* sourceOffset = &myData[0]; 210 const jchar* mySource = uSource.get() + *sourceOffset; 216 *sourceOffset = (mySource - uSource.get()) - *sourceOffset; 264 jint* sourceOffset = &myData[0]; 266 const char* mySource = reinterpret_cast<const char*>(uSource.get() + *sourceOffset); 272 *sourceOffset = mySource - reinterpret_cast<const char*>(uSource.get()) - *sourceOffset;
|
/external/icu/icu4c/source/i18n/ |
msgfmt.cpp | [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
choicfmt.h | 517 * against the source string starting at sourceOffset. 523 const UnicodeString &source, int32_t sourceOffset);
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
debayer.cu | 395 __global__ void MHCdemosaic(PtrStepSz<DstType> dst, const int2 sourceOffset, const int2 firstRed) 411 center.x = x + sourceOffset.x; 412 center.y = y + sourceOffset.y; 523 void MHCdemosaic(PtrStepSzb src, int2 sourceOffset, PtrStepSzb dst, int2 firstRed, cudaStream_t stream) 532 MHCdemosaic<dst_t><<<grid, block, 0, stream>>>((PtrStepSz<dst_t>)dst, sourceOffset, firstRed); 539 template void MHCdemosaic<1>(PtrStepSzb src, int2 sourceOffset, PtrStepSzb dst, int2 firstRed, cudaStream_t stream); 540 template void MHCdemosaic<3>(PtrStepSzb src, int2 sourceOffset, PtrStepSzb dst, int2 firstRed, cudaStream_t stream); 541 template void MHCdemosaic<4>(PtrStepSzb src, int2 sourceOffset, PtrStepSzb dst, int2 firstRed, cudaStream_t stream);
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/ |
VertexBufferObject.java | 122 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
126 BufferUtils.copy(vertices, sourceOffset, count, buffer);
|
VertexBufferObjectWithVAO.java | 116 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) { 120 BufferUtils.copy(vertices, sourceOffset, count, buffer);
|