Home
last modified time | relevance | path

Searched refs:targetIndex (Results 1 - 20 of 20) sorted by relevance

/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetUTF8.java67 int targetIndex = target.arrayOffset() + target.position(); in decodeLoop()
120 targetArray[targetIndex++] = (char) char32; in decodeLoop()
126 targetArray[targetIndex++] = (char) ((char32 >>> UConverterConstants.HALF_SHIFT) + UConverterConstants.SURROGATE_HIGH_START); in decodeLoop()
128 if (targetIndex >= targetLimit) { in decodeLoop()
134 targetArray[targetIndex++] = (char) ((char32 & UConverterConstants.HALF_MASK) + UConverterConstants.SURROGATE_LOW_START); in decodeLoop()
146 if (targetIndex >= targetLimit) { in decodeLoop()
153 targetArray[targetIndex++] = (char) ch; in decodeLoop()
158 if (targetIndex >= targetLimit) { in decodeLoop()
182 target.position(targetIndex - target.arrayOffset()); in decodeLoop()
189 int targetIndex in decodeLoop()
601 private int targetIndex; global() field in CharsetUTF8.CharsetEncoderUTF8
[all...]
H A DCharsetASCII.java69 int targetIndex = oldTarget + targetOffset; in decodeLoop()
74 int offset = targetIndex - sourceIndex; in decodeLoop()
227 int targetIndex = oldTarget + targetOffset; in encodeLoop()
232 int offset = targetIndex - sourceIndex; in encodeLoop()
/third_party/mesa3d/src/mesa/main/
H A Dtexobj.c241 int targetIndex; in _mesa_get_texobj_by_target_and_texunit() local
255 targetIndex = _mesa_tex_target_to_index(ctx, target); in _mesa_get_texobj_by_target_and_texunit()
256 if (targetIndex < 0 || targetIndex == TEXTURE_BUFFER_INDEX) { in _mesa_get_texobj_by_target_and_texunit()
260 assert(targetIndex < NUM_TEXTURE_TARGETS); in _mesa_get_texobj_by_target_and_texunit()
262 return texUnit->CurrentTex[targetIndex]; in _mesa_get_texobj_by_target_and_texunit()
418 struct gl_texture_object *obj, int targetIndex) in finish_texture_init()
424 obj->TargetIndex = targetIndex; in finish_texture_init()
1298 GLint targetIndex; in _mesa_CreateTextures() local
1306 targetIndex in _mesa_CreateTextures()
417 finish_texture_init(struct gl_context *ctx, GLenum target, struct gl_texture_object *obj, int targetIndex) finish_texture_init() argument
1592 int targetIndex; bind_texture_object() local
1650 int targetIndex; _mesa_lookup_or_create_texture() local
[all...]
H A Dformatquery.c1475 int targetIndex = _mesa_tex_target_to_index(ctx, target); in _mesa_GetInternalformativ() local
1476 if (targetIndex < 0 || targetIndex == TEXTURE_BUFFER_INDEX) in _mesa_GetInternalformativ()
H A Dteximage.c2916 int targetIndex = _mesa_tex_target_to_index(ctx, boundTarget); in lookup_texture_ext_dsa() local
2917 if (targetIndex < 0) { in lookup_texture_ext_dsa()
2922 assert(targetIndex < NUM_TEXTURE_TARGETS); in lookup_texture_ext_dsa()
2927 texObj = ctx->Shared->DefaultTex[targetIndex]; in lookup_texture_ext_dsa()
/third_party/icu/icu4c/source/common/
H A Ducnvhz.cpp41 #define CONCAT_ESCAPE_MACRO(args, targetIndex,targetLength,strToAppend, err, len,sourceIndex) UPRV_BLOCK_MACRO_BEGIN { \
43 if(targetIndex < targetLength){ \
44 args->target[targetIndex] = (unsigned char) *strToAppend; \
48 targetIndex++; \
61 int32_t targetIndex; member
123 ((UConverterDataHZ*)cnv->extraInfo)->targetIndex = 0; in _HZReset()
/third_party/node/deps/icu-small/source/common/
H A Ducnvhz.cpp41 #define CONCAT_ESCAPE_MACRO(args, targetIndex,targetLength,strToAppend, err, len,sourceIndex) UPRV_BLOCK_MACRO_BEGIN { \
43 if(targetIndex < targetLength){ \
44 args->target[targetIndex] = (unsigned char) *strToAppend; \
48 targetIndex++; \
61 int32_t targetIndex; member
123 ((UConverterDataHZ*)cnv->extraInfo)->targetIndex = 0; in _HZReset()
/third_party/skia/third_party/externals/icu/source/common/
H A Ducnvhz.cpp41 #define CONCAT_ESCAPE_MACRO(args, targetIndex,targetLength,strToAppend, err, len,sourceIndex) UPRV_BLOCK_MACRO_BEGIN { \
43 if(targetIndex < targetLength){ \
44 args->target[targetIndex] = (unsigned char) *strToAppend; \
48 targetIndex++; \
61 int32_t targetIndex; member
123 ((UConverterDataHZ*)cnv->extraInfo)->targetIndex = 0; in _HZReset()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUnsafeUtil.java246 static void copyMemory(long srcOffset, byte[] target, long targetIndex, long length) { in copyMemory() argument
247 MEMORY_ACCESSOR.copyMemory(srcOffset, target, targetIndex, length); in copyMemory()
250 static void copyMemory(byte[] src, long srcIndex, byte[] target, long targetIndex, long length) { in copyMemory() argument
251 System.arraycopy(src, (int) srcIndex, target, (int) targetIndex, (int) length); in copyMemory()
611 public abstract void copyMemory(long srcOffset, byte[] target, long targetIndex, long length); in copyMemory() argument
693 public void copyMemory(long srcOffset, byte[] target, long targetIndex, long length) { in copyMemory() argument
694 unsafe.copyMemory(null, srcOffset, target, BYTE_ARRAY_BASE_OFFSET + targetIndex, length); in copyMemory()
801 public void copyMemory(long srcOffset, byte[] target, long targetIndex, long length) { in copyMemory() argument
921 public void copyMemory(long srcOffset, byte[] target, long targetIndex, long length) { in copyMemory() argument
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DTransliteratorTest.java3023 int targetIndex = 0; in TestSourceTargetSetFilter()
3028 targetIndex++; in TestSourceTargetSetFilter()
3029 UnicodeSet expectedTarget = testPair.length <= targetIndex ? expectedSource in TestSourceTargetSetFilter()
3030 : testPair[targetIndex] == null ? expectedSource in TestSourceTargetSetFilter()
3031 : testPair[targetIndex].length() == 0 ? expectedSource in TestSourceTargetSetFilter()
3032 : new UnicodeSet(testPair[targetIndex]); in TestSourceTargetSetFilter()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DTransliteratorTest.java3020 int targetIndex = 0; in TestSourceTargetSetFilter()
3025 targetIndex++; in TestSourceTargetSetFilter()
3026 UnicodeSet expectedTarget = testPair.length <= targetIndex ? expectedSource in TestSourceTargetSetFilter()
3027 : testPair[targetIndex] == null ? expectedSource in TestSourceTargetSetFilter()
3028 : testPair[targetIndex].length() == 0 ? expectedSource in TestSourceTargetSetFilter()
3029 : new UnicodeSet(testPair[targetIndex]); in TestSourceTargetSetFilter()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-charset-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/ibm/ com/ibm/icu/ ...
/third_party/skia/src/gpu/gl/
H A DGrGLGpu.cpp158 int targetIndex = gl_target_to_binding_index(target); in setBoundID() local
159 fTargetBindings[targetIndex].fBoundResourceID = resourceID; in setBoundID()
160 fTargetBindings[targetIndex].fHasBeenModified = true; in setBoundID()
/third_party/typescript/lib/
H A DtypingsInstaller.js[all...]
H A Dtsc.js[all...]
H A Dtsserverlibrary.js[all...]
H A Dtypescript.js[all...]
H A DtypescriptServices.js[all...]
H A Dtsserver.js[all...]
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js[all...]

Completed in 233 milliseconds