/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UTF16.java | 219 public static int charAt(String source, int offset16) { in charAt() argument 220 char single = source.charAt(offset16); in charAt() 224 return _charAt(source, offset16, single); in charAt() 227 private static int _charAt(String source, int offset16, char single) { in _charAt() argument 237 ++offset16; in _charAt() 238 if (source.length() != offset16) { in _charAt() 239 char trail = source.charAt(offset16); in _charAt() 245 --offset16; in _charAt() 246 if (offset16 >= 0) { in _charAt() 248 char lead = source.charAt(offset16); in _charAt() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | UTF16.java | 199 public static int charAt(String source, int offset16) { in charAt() argument 200 char single = source.charAt(offset16); in charAt() 204 return _charAt(source, offset16, single); in charAt() 207 private static int _charAt(String source, int offset16, char single) { in _charAt() argument 217 ++offset16; in _charAt() 218 if (source.length() != offset16) { in _charAt() 219 char trail = source.charAt(offset16); in _charAt() 225 --offset16; in _charAt() 226 if (offset16 >= 0) { in _charAt() 228 char lead = source.charAt(offset16); in _charAt() [all …]
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
D | UTF16Util.java | 315 int offset16) in charAt() argument 317 offset16 += start; in charAt() 318 if (offset16 < start || offset16 >= limit) { in charAt() 319 throw new ArrayIndexOutOfBoundsException(offset16); in charAt() 322 char single = source[offset16]; in charAt() 331 offset16 ++; in charAt() 332 if (offset16 >= limit) { in charAt() 335 char trail = source[offset16]; in charAt() 341 if (offset16 == start) { in charAt() 344 offset16 --; in charAt() [all …]
|
/external/cldr/tools/java/com/ibm/icu/dev/test/ |
D | UTF16Util.java | 314 int offset16) in charAt() argument 316 offset16 += start; in charAt() 317 if (offset16 < start || offset16 >= limit) { in charAt() 318 throw new ArrayIndexOutOfBoundsException(offset16); in charAt() 321 char single = source[offset16]; in charAt() 330 offset16 ++; in charAt() 331 if (offset16 >= limit) { in charAt() 334 char trail = source[offset16]; in charAt() 340 if (offset16 == start) { in charAt() 343 offset16 --; in charAt() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
D | UTF16Util.java | 319 int offset16) in charAt() argument 321 offset16 += start; in charAt() 322 if (offset16 < start || offset16 >= limit) { in charAt() 323 throw new ArrayIndexOutOfBoundsException(offset16); in charAt() 326 char single = source[offset16]; in charAt() 335 offset16 ++; in charAt() 336 if (offset16 >= limit) { in charAt() 339 char trail = source[offset16]; in charAt() 345 if (offset16 == start) { in charAt() 348 offset16 --; in charAt() [all …]
|
/external/llvm/test/Analysis/ValueTracking/ |
D | memory-dereferenceable.ll | 108 ; CHECK: %gep.align1.offset16{{.*}}(unaligned) 109 ; CHECK: %gep.align16.offset16{{.*}}(aligned) 112 %gep.align1.offset16 = getelementptr inbounds i8, i8 addrspace(1)* %dparam.align1, i32 16 113 %gep.align16.offset16 = getelementptr inbounds i8, i8 addrspace(1)* %dparam.align16, i32 16 116 %load21 = load i8, i8 addrspace(1)* %gep.align1.offset16, align 16 117 %load22 = load i8, i8 addrspace(1)* %gep.align16.offset16, align 16
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ValueTracking/ |
D | memory-dereferenceable.ll | 137 ; CHECK: %gep.align1.offset16{{.*}}(unaligned) 138 ; CHECK: %gep.align16.offset16{{.*}}(aligned) 141 %gep.align1.offset16 = getelementptr inbounds i8, i8 addrspace(1)* %dparam.align1, i32 16 142 %gep.align16.offset16 = getelementptr inbounds i8, i8 addrspace(1)* %dparam.align16, i32 16 145 %load21 = load i8, i8 addrspace(1)* %gep.align1.offset16, align 16 146 %load22 = load i8, i8 addrspace(1)* %gep.align16.offset16, align 16
|
/external/icu/icu4c/source/test/cintltst/ |
D | ncnvtst.c | 706 int32_t offset16; in TestRegressionUTF8() local 711 offset16 = 0; in TestRegressionUTF8() 714 && offset16 < (MAX_LENGTH/sizeof(UChar) - MAX_UTF16_LEN) in TestRegressionUTF8() 720 U16_APPEND_UNSAFE(standardForm, offset16, currCh); in TestRegressionUTF8() 724 if(!convertFromU(standardForm, offset16, in TestRegressionUTF8() 729 standardForm, offset16, "UTF8", 0, TRUE, U_ZERO_ERROR )) { in TestRegressionUTF8() 777 int32_t offset16; in TestRegressionUTF32() local 782 offset16 = 0; in TestRegressionUTF32() 785 && offset16 < (MAX_LENGTH/sizeof(UChar) - MAX_UTF16_LEN) in TestRegressionUTF32() 791 U16_APPEND_UNSAFE(standardForm, offset16, currCh); in TestRegressionUTF32() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Utility.java | 786 public static int unescapeAt(String s, int[] offset16) { in unescapeAt() argument 798 int offset = offset16[0]; in unescapeAt() 878 offset16[0] = offset; in unescapeAt() 885 offset16[0] = offset; in unescapeAt() 895 offset16[0] = offset + UTF16.getCharCount(c); in unescapeAt() 901 offset16[0] = offset; in unescapeAt()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Utility.java | 790 public static int unescapeAt(String s, int[] offset16) { in unescapeAt() argument 802 int offset = offset16[0]; in unescapeAt() 882 offset16[0] = offset; in unescapeAt() 889 offset16[0] = offset; in unescapeAt() 899 offset16[0] = offset + UTF16.getCharCount(c); in unescapeAt() 905 offset16[0] = offset; in unescapeAt()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
D | UnicodeSetTest.java | 306 public static int unescapeAt(String s, int[] offset16) { in unescapeAt() argument 317 int offset = offset16[0]; in unescapeAt() 373 offset16[0] = offset; in unescapeAt() 380 offset16[0] = offset; in unescapeAt() 389 offset16[0] = offset; in unescapeAt()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
D | UnicodeSetTest.java | 309 public static int unescapeAt(String s, int[] offset16) { in unescapeAt() argument 320 int offset = offset16[0]; in unescapeAt() 376 offset16[0] = offset; in unescapeAt() 383 offset16[0] = offset; in unescapeAt() 392 offset16[0] = offset; in unescapeAt()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | DSInstructions.td | 596 (int_amdgcn_ds_swizzle i32:$src, imm:$offset16), 597 (DS_SWIZZLE_B32 $src, (as_i16imm $offset16), (i1 0))
|
/external/libpcap/msdos/ |
D | pktdrvr.c | 373 rp = (realAdr.segment << 4) + realAdr.offset16; in PktSearchDriver()
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86InstrInfo.td | 324 def offset16 : Operand<i64>; 890 def MOV16o16a : Ii32 <0xA1, RawFrm, (outs), (ins offset16:$src), 899 def MOV16ao16 : Ii32 <0xA3, RawFrm, (outs offset16:$dst), (ins),
|
/external/v8/src/mips/ |
D | assembler-mips.cc | 1448 int32_t offset16) { in GenInstrMsaBranch() argument 1450 DCHECK(wt.is_valid() && is_int16(offset16)); in GenInstrMsaBranch() 1453 COP1 | operation | (wt.code() << kWtShift) | (offset16 & kImm16Mask); in GenInstrMsaBranch()
|
D | assembler-mips.h | 2093 int32_t offset16);
|
/external/v8/src/mips64/ |
D | assembler-mips64.cc | 1412 int32_t offset16) { in GenInstrMsaBranch() argument 1414 DCHECK(wt.is_valid() && is_int16(offset16)); in GenInstrMsaBranch() 1417 COP1 | operation | (wt.code() << kWtShift) | (offset16 & kImm16Mask); in GenInstrMsaBranch()
|
D | assembler-mips64.h | 2158 int32_t offset16);
|
/external/llvm/lib/Target/AMDGPU/ |
D | SIInstructions.td | 2356 (int_amdgcn_ds_swizzle i32:$src, imm:$offset16), 2357 (DS_SWIZZLE_B32 $src, (as_i16imm $offset16), (i1 0))
|