| /third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
| D | CharsetASCII.java | 62 byte[] sourceArray = source.array(); in decodeLoop() 80 …cr = decodeLoopCoreOptimized(source, target, sourceArray, targetArray, sourceIndex, offset, limit); in decodeLoop() 112 byte[] sourceArray, char[] targetArray, int oldSource, int offset, int limit) { in decodeLoopCoreOptimized() argument 119 for (i = oldSource; i < limit && (((ch = (sourceArray[i] & 0xff)) & 0x80) == 0); i++) in decodeLoopCoreOptimized() 220 char[] sourceArray = source.array(); in encodeLoop() local 238 …cr = encodeLoopCoreOptimized(source, target, sourceArray, targetArray, sourceIndex, offset, limit,… in encodeLoop() 272 char[] sourceArray, byte[] targetArray, int oldSource, int offset, int limit, in encodeLoopCoreOptimized() argument 280 for (i = oldSource; i < limit && (((ch = sourceArray[i]) & 0xff80) == 0); i++) in encodeLoopCoreOptimized()
|
| D | Charset88591.java | 32 byte[] sourceArray, char[] targetArray, int oldSource, int offset, int limit) { in decodeLoopCoreOptimized() argument 39 targetArray[i + offset] = (char) (sourceArray[i] & 0xff); in decodeLoopCoreOptimized() 71 char[] sourceArray, byte[] targetArray, int oldSource, int offset, int limit, in encodeLoopCoreOptimized() argument 80 ch = sourceArray[i]; in encodeLoopCoreOptimized()
|
| D | CharsetUTF8.java | 63 byte[] sourceArray = source.array(); in decodeLoop() 76 toUBytesArray[0] = ch = sourceArray[sourceIndex++]; in decodeLoop() 102 toUBytesArray[bytesSoFar] = ch = sourceArray[sourceIndex++]; in decodeLoop() 152 while (UTF8.isSingle(ch = sourceArray[sourceIndex++])) { in decodeLoop() 341 char[] sourceArray = source.array(); in encodeLoop() local 357 cr = encodeFourBytes(sourceArray, targetArray, sourceLimit, targetLimit, in encodeLoop() 381 char32 = sourceArray[srcIdx++]; in encodeLoop() 425 cr = encodeFourBytes(sourceArray, targetArray, sourceLimit, targetLimit, in encodeLoop() 518 private final CoderResult encodeFourBytes(char[] sourceArray, byte[] targetArray, in encodeFourBytes() argument 523 CoderResult cr = handleSurrogates(sourceArray, sourceIndex, sourceLimit, (char)char32); in encodeFourBytes()
|
| D | CharsetEncoderICU.java | 908 final CoderResult handleSurrogates(char[] sourceArray, int sourceIndex, in handleSurrogates() argument 920 char trail = sourceArray[sourceIndex]; in handleSurrogates()
|
| D | CharsetMBCS.java | 1970 byte[] sourceArray; in simpleMatchToU() 1975 sourceArray = new byte[Math.min(source.remaining(), EXT_MAX_BYTES)]; in simpleMatchToU() 1976 source.get(sourceArray).position(sourcePosition); in simpleMatchToU() 1978 sourceLimit = sourceArray.length; in simpleMatchToU() 1980 sourceArray = source.array(); in simpleMatchToU() 1984 …match = matchToU((byte) -1, sourceArray, sourcePosition, sourceLimit, null, value, useFallback, tr… in simpleMatchToU()
|
| /third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
| D | GLSLTest.cpp | 2413 const char *sourceArray[1] = {source.c_str()}; in TEST_P() local 2415 glShaderSource(shader, static_cast<GLsizei>(ArraySize(sourceArray)), sourceArray, lengths); in TEST_P() 2428 const char *sourceArray[1] = {essl1_shaders::fs::Red()}; in TEST_P() local 2430 glShaderSource(shader, static_cast<GLsizei>(ArraySize(sourceArray)), sourceArray, lengths); in TEST_P() 2456 const char *sourceArray[] = { in TEST_P() local 2465 static_cast<GLint>(strlen(sourceArray[2])), in TEST_P() 2468 ASSERT_EQ(ArraySize(sourceArray), ArraySize(lengths)); in TEST_P() 2470 glShaderSource(shader, static_cast<GLsizei>(ArraySize(sourceArray)), sourceArray, lengths); in TEST_P() 2483 const char *sourceArray[] = { in TEST_P() local 2489 ASSERT_EQ(ArraySize(sourceArray), ArraySize(lengths)); in TEST_P() [all …]
|
| D | ParallelShaderCompileTest.cpp | 87 const char *sourceArray[1] = {source.c_str()}; in CompileShader() local 88 glShaderSource(shader, 1, sourceArray, nullptr); in CompileShader()
|
| D | FramebufferFetchTest.cpp | 984 const char *sourceArray[3] = {kVS, kFS1, kFS2}; in ProgramPipelineTest() local 987 glShaderSource(vertShader, 1, &sourceArray[0], nullptr); in ProgramPipelineTest() 995 glShaderSource(fragShader1, 1, &sourceArray[1], nullptr); in ProgramPipelineTest() 1003 glShaderSource(fragShader2, 1, &sourceArray[2], nullptr); in ProgramPipelineTest()
|
| /third_party/skia/third_party/externals/angle2/util/ |
| D | shader_utils.cpp | 144 const char *sourceArray[1] = {source}; in CompileShader() local 145 glShaderSource(shader, 1, sourceArray, nullptr); in CompileShader()
|
| /third_party/node/deps/v8/src/builtins/ |
| D | typed-array-from.tq | 91 case (sourceArray: JSArray): { 103 finalLength = Convert<uintptr>(sourceArray.length);
|
| /third_party/node/deps/icu-small/source/common/ |
| D | rbbitblb.cpp | 1051 MaybeStackArray<void *, 16> destArray, sourceArray; // Handle small cases without malloc in setAdd() local 1063 if (sourceSize > sourceArray.getCapacity()) { in setAdd() 1064 if (sourceArray.resize(sourceSize) == nullptr) { in setAdd() 1068 sourcePtr = sourceArray.getAlias(); in setAdd()
|
| /third_party/skia/third_party/externals/icu/source/common/ |
| D | rbbitblb.cpp | 1048 MaybeStackArray<void *, 16> destArray, sourceArray; // Handle small cases without malloc in setAdd() local 1060 if (sourceSize > sourceArray.getCapacity()) { in setAdd() 1061 if (sourceArray.resize(sourceSize) == NULL) { in setAdd() 1065 sourcePtr = sourceArray.getAlias(); in setAdd()
|
| /third_party/icu/icu4c/source/common/ |
| D | rbbitblb.cpp | 1051 MaybeStackArray<void *, 16> destArray, sourceArray; // Handle small cases without malloc in setAdd() local 1063 if (sourceSize > sourceArray.getCapacity()) { in setAdd() 1064 if (sourceArray.resize(sourceSize) == NULL) { in setAdd() 1068 sourcePtr = sourceArray.getAlias(); in setAdd()
|