Home
last modified time | relevance | path

Searched refs:targetIndex (Results 1 – 16 of 16) sorted by relevance

/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetUTF8.java67 int targetIndex = target.arrayOffset() + target.position(); in decodeLoop() local
120 targetArray[targetIndex++] = (char) char32; in decodeLoop()
126 …targetArray[targetIndex++] = (char) ((char32 >>> UConverterConstants.HALF_SHIFT) + UConverterConst… in decodeLoop()
128 if (targetIndex >= targetLimit) { in decodeLoop()
134 …targetArray[targetIndex++] = (char) ((char32 & UConverterConstants.HALF_MASK) + UConverterConstant… 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 = target.position(); in decodeLoop() local
[all …]
DCharsetASCII.java69 int targetIndex = oldTarget + targetOffset; in decodeLoop() local
74 int offset = targetIndex - sourceIndex; in decodeLoop()
227 int targetIndex = oldTarget + targetOffset; in encodeLoop() local
232 int offset = targetIndex - sourceIndex; in encodeLoop()
/third_party/mesa3d/src/mesa/main/
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() argument
424 obj->TargetIndex = targetIndex; in finish_texture_init()
1298 GLint targetIndex; in _mesa_CreateTextures() local
1306 targetIndex = _mesa_tex_target_to_index(ctx, target); in _mesa_CreateTextures()
1307 if (targetIndex < 0) { in _mesa_CreateTextures()
[all …]
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()
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/node/deps/v8/src/builtins/
Dtyped-array-sort.tq35 for (let targetIndex: uintptr = from; targetIndex < to; ++targetIndex) {
39 target.objects[targetIndex] = source.objects[left++];
45 target.objects[targetIndex] = leftElement;
48 target.objects[targetIndex] = rightElement;
55 target.objects[targetIndex] = source.objects[right++];
/third_party/typescript/src/compiler/
Dsourcemap.ts735 …let targetIndex = binarySearchKey(sourceMappings, loc.pos, getSourcePositionOfMapping, compareValu…
736 if (targetIndex < 0) {
738 targetIndex = ~targetIndex;
741 const mapping = sourceMappings[targetIndex]; constant
753 …let targetIndex = binarySearchKey(generatedMappings, loc.pos, getGeneratedPositionOfMapping, compa…
754 if (targetIndex < 0) {
756 targetIndex = ~targetIndex;
759 const mapping = generatedMappings[targetIndex]; constant
/third_party/node/deps/icu-small/source/common/
Ducnvhz.cpp41 #define CONCAT_ESCAPE_MACRO(args, targetIndex,targetLength,strToAppend, err, len,sourceIndex) UPRV_… argument
43 …if(targetIndex < targetLength){ …
44 …args->target[targetIndex] = (unsigned char) *strToAppend; …
48targetIndex++; …
61 int32_t targetIndex; member
123 ((UConverterDataHZ*)cnv->extraInfo)->targetIndex = 0; in _HZReset()
/third_party/icu/icu4c/source/common/
Ducnvhz.cpp41 #define CONCAT_ESCAPE_MACRO(args, targetIndex,targetLength,strToAppend, err, len,sourceIndex) UPRV_… argument
43 …if(targetIndex < targetLength){ …
44 …args->target[targetIndex] = (unsigned char) *strToAppend; …
48targetIndex++; …
61 int32_t targetIndex; member
123 ((UConverterDataHZ*)cnv->extraInfo)->targetIndex = 0; in _HZReset()
/third_party/skia/third_party/externals/icu/source/common/
Ducnvhz.cpp41 #define CONCAT_ESCAPE_MACRO(args, targetIndex,targetLength,strToAppend, err, len,sourceIndex) UPRV_… argument
43 …if(targetIndex < targetLength){ …
44 …args->target[targetIndex] = (unsigned char) *strToAppend; …
48targetIndex++; …
61 int32_t targetIndex; member
123 ((UConverterDataHZ*)cnv->extraInfo)->targetIndex = 0; in _HZReset()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
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/
DTransliteratorTest.java3023 int targetIndex = 0; in TestSourceTargetSetFilter() local
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/
DTransliteratorTest.java3020 int targetIndex = 0; in TestSourceTargetSetFilter() local
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/src/gpu/gl/
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/
Dtsc.js80289 …var targetIndex = ts.binarySearchKey(sourceMappings, loc.pos, getSourcePositionOfMapping, ts.compa…
80290 if (targetIndex < 0) {
80291 targetIndex = ~targetIndex;
80293 var mapping = sourceMappings[targetIndex];
80303 …var targetIndex = ts.binarySearchKey(generatedMappings, loc.pos, getGeneratedPositionOfMapping, ts…
80304 if (targetIndex < 0) {
80305 targetIndex = ~targetIndex;
80307 var mapping = generatedMappings[targetIndex];
DtypingsInstaller.js94875 …var targetIndex = ts.binarySearchKey(sourceMappings, loc.pos, getSourcePositionOfMapping, ts.compa…
94876 if (targetIndex < 0) {
94878 targetIndex = ~targetIndex;
94880 var mapping = sourceMappings[targetIndex];
94890 …var targetIndex = ts.binarySearchKey(generatedMappings, loc.pos, getGeneratedPositionOfMapping, ts…
94891 if (targetIndex < 0) {
94893 targetIndex = ~targetIndex;
94895 var mapping = generatedMappings[targetIndex];