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

1 2 3

  /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/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);
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ByteString.java 587 * @param sourceOffset offset within these bytes
593 public final void copyTo(byte[] target, int sourceOffset, int targetOffset,
595 checkRange(sourceOffset, sourceOffset + numberToCopy, size());
598 copyToInternal(target, sourceOffset, targetOffset, numberToCopy);
608 protected abstract void copyToInternal(byte[] target, int sourceOffset,
648 * @param sourceOffset offset within these bytes
653 final void writeTo(OutputStream out, int sourceOffset, int numberToWrite)
655 checkRange(sourceOffset, sourceOffset + numberToWrite, size())
    [all...]
NioByteString.java 108 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) {
110 slice.position(sourceOffset);
130 void writeToInternal(OutputStream out, int sourceOffset, int numberToWrite) throws IOException {
134 int bufferOffset = buffer.arrayOffset() + buffer.position() + sourceOffset;
139 ByteBufferWriter.write(slice(sourceOffset, sourceOffset + numberToWrite), out);
RopeByteString.java 343 protected void copyToInternal(byte[] target, int sourceOffset,
345 if (sourceOffset + numberToCopy <= leftLength) {
346 left.copyToInternal(target, sourceOffset, targetOffset, numberToCopy);
347 } else if (sourceOffset >= leftLength) {
348 right.copyToInternal(target, sourceOffset - leftLength, targetOffset,
351 int leftLength = this.leftLength - sourceOffset;
352 left.copyToInternal(target, sourceOffset, targetOffset, leftLength);
390 void writeToInternal(OutputStream out, int sourceOffset,
392 if (sourceOffset + numberToWrite <= leftLength) {
393 left.writeToInternal(out, sourceOffset, numberToWrite)
    [all...]
  /libcore/ojluni/src/main/java/java/text/
MessageFormat.java     [all...]
  /external/protobuf/javamicro/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/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/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetASCII.java 63 int sourceOffset = source.arrayOffset();
64 int sourceIndex = oldSource + sourceOffset;
221 int sourceOffset = source.arrayOffset();
222 int sourceIndex = oldSource + sourceOffset;
  /external/icu/icu4c/source/i18n/
msgfmt.cpp     [all...]
choicfmt.cpp 543 const UnicodeString &source, int32_t sourceOffset) {
552 if (length != 0 && 0 != source.compare(sourceOffset, length, msgString, prevIndex, length)) {
  /external/icu/icu4c/source/i18n/unicode/
choicfmt.h 519 * against the source string starting at sourceOffset.
525 const UnicodeString &source, int32_t sourceOffset);
  /libcore/luni/src/main/native/
libcore_icu_NativeConverter.cpp 237 jint* sourceOffset = &myData[0];
239 const jchar* mySource = uSource.get() + *sourceOffset;
245 *sourceOffset = (mySource - uSource.get()) - *sourceOffset;
293 jint* sourceOffset = &myData[0];
295 const char* mySource = reinterpret_cast<const char*>(uSource.get() + *sourceOffset);
301 *sourceOffset = mySource - reinterpret_cast<const char*>(uSource.get()) - *sourceOffset;
  /libcore/ojluni/src/main/java/java/lang/
String.java     [all...]
  /external/icu/icu4c/source/common/
ucnv_ct.cpp 475 int32_t sourceOffset = 0;
523 sourceOffset = static_cast<int32_t>(uprv_strlen((char*)escSeqCompoundText[currentState]) - args->converter->toULength);
525 mySource += sourceOffset;
543 sourceOffset = findNextEsc(mySource, mySourceLimit);
545 tmpSourceLimit = mySource + sourceOffset;
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
LiteralByteStringTest.java 134 int sourceOffset = 213;
135 stringUnderTest.copyTo(destination, sourceOffset, destinationOffset, length);
138 stillEqual = referenceBytes[i + sourceOffset] == destination[i + destinationOffset];
159 // Copy with illegal negative sourceOffset
161 fail("Should have thrown an exception when given a negative sourceOffset in "
186 // Copy with illegal too-large sourceOffset
NioByteStringTest.java 128 int sourceOffset = 213;
129 testString.copyTo(destination, sourceOffset, destinationOffset, length);
132 stillEqual = BYTES[i + sourceOffset] == destination[i + destinationOffset];
153 // Copy with illegal negative sourceOffset
155 fail("Should have thrown an exception when given a negative sourceOffset in "
180 // Copy with illegal too-large sourceOffset
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-lite/3.0.1/
protobuf-lite-3.0.1.jar 
  /external/conscrypt/common/src/main/java/org/conscrypt/
NativeCrypto.java     [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES20.java     [all...]
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
protobuf-java-2.6.1.jar 

Completed in 559 milliseconds

1 2 3