HomeSort by relevance Sort by last modified time
    Searched full:byte2 (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /frameworks/base/rs/java/android/renderscript/
Byte2.java 21 * Class for exposing the native RenderScript byte2 type back to the Android system.
24 public class Byte2 {
28 public Byte2() {
31 public Byte2(byte initX, byte initY) {
37 public Byte2(Byte2 source) {
47 public void add(Byte2 a) {
59 public static Byte2 add(Byte2 a, Byte2 b)
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Byte2.java 24 * Class for exposing the native RenderScript byte2 type back to the Android system.
27 public class Byte2 {
28 public Byte2() {
31 public Byte2(byte initX, byte initY) {
FieldPacker.java 301 public void addI8(Byte2 v) {
474 public Byte2 subByte2() {
475 Byte2 v = new Byte2();
667 if (obj instanceof Byte2) {
668 fp.addI8((Byte2)obj);
807 if (obj instanceof Byte2) {
  /external/protobuf/java/src/main/java/com/google/protobuf/
Utf8.java 86 // int state = byte1 ^ (byte2 << 8) ^ (byte3 << 16);
88 // Such a state is unpacked thus (note the ~ operation for byte2 to
92 // int byte2 = (byte) ~(state >> 8);
164 // byte2 trailing-byte test
171 // Get byte2 from saved state or array
172 int byte2 = (byte) ~(state >> 8); local
173 if (byte2 == 0) {
174 byte2 = bytes[index++];
176 return incompleteStateFor(byte1, byte2);
179 if (byte2 > (byte) 0xBF |
192 int byte2 = (byte) ~(state >> 8); local
263 int byte1, byte2; local
    [all...]
  /ndk/docs/Additional_library_docs/renderscript/
classandroid_1_1RSC_1_1Byte2.html 6 <title>android::RSC::Byte2 Class Reference</title>
28 <li class="navelem"><a class="el" href="classandroid_1_1RSC_1_1Byte2.html">Byte2</a> </li>
34 <div class="title">android::RSC::Byte2 Class Reference</div> </div>
37 <!-- doxytag: class="android::RSC::Byte2" --><hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
  /external/icu/icu4c/source/i18n/
collation.cpp 78 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step; local
80 if(byte2 < 4) {
81 byte2 += 251;
85 if(byte2 < 2) {
86 byte2 += 254;
90 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16);
105 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - 1; local
107 if(byte2 < 4) {
108 byte2 = 0xfe;
112 if(byte2 < 2)
    [all...]
  /external/libunwind/src/ia64/
unwind_decoder.h 126 unsigned char byte1, byte2, abreg, x, ytreg; local
129 byte1 = *dp++; byte2 = *dp++;
132 ytreg = byte2;
144 unsigned char byte1, byte2, abreg, qp; local
147 byte1 = *dp++; byte2 = *dp++;
152 abreg = (byte2 & 0x7f);
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
167 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++;
171 abreg = (byte2 & 0x7f);
172 x = (byte2 >> 7) & 1
264 unw_word grmask, frmask, byte1, byte2, byte3; local
292 unsigned char r, byte1, byte2; local
    [all...]
  /external/guava/guava/src/com/google/common/base/
Utf8.java 163 int byte2 = bytes[index++]; local
164 if (byte2 > (byte) 0xBF
166 || (byte1 == (byte) 0xE0 && byte2 < (byte) 0xA0)
168 || (byte1 == (byte) 0xED && (byte) 0xA0 <= byte2)
178 int byte2 = bytes[index++]; local
179 if (byte2 > (byte) 0xBF
182 // || byte1 == (byte) 0xF0 && byte2 < (byte) 0x90
183 // || byte1 == (byte) 0xF4 && byte2 > (byte) 0x8F)
184 || (((byte1 << 28) + (byte2 - (byte) 0x90)) >> 30) != 0
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_bug_char.java 34 private Byte2 pack_b2(byte[] val) {
37 return new Byte2(val[0], val[1]);
72 Byte2 min_rand_sc2 = pack_b2(min_rand_sc2_raw);
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_bug_char.java 34 private Byte2 pack_b2(byte[] val) {
37 return new Byte2(val[0], val[1]);
72 Byte2 min_rand_sc2 = pack_b2(min_rand_sc2_raw);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_bug_char.java 34 private Byte2 pack_b2(byte[] val) {
37 return new Byte2(val[0], val[1]);
72 Byte2 min_rand_sc2 = pack_b2(min_rand_sc2_raw);
  /art/tools/
stream-trace-converter.py 33 byte2 = f.read(1)
34 if not byte2:
36 return ord(byte1) + (ord(byte2) << 8);
47 byte2 = f.read(1)
48 if not byte2:
56 return ord(byte1) + (ord(byte2) << 8) + (ord(byte3) << 16) + (ord(byte4) << 24);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
FileRetrCommandHandlerTest.java 37 private static final byte BYTE2 = (byte) 21;
95 assertEquals("buffer[0]", BYTE2, buffer[0]);
96 assertEquals("buffer[1]", BYTE2, buffer[1]);
97 assertEquals("buffer[2]", BYTE2, buffer[2]);
173 // Arrays.fill(BUFFER, BYTE2);
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
FileRetrCommandHandlerTest.java 40 private static final byte BYTE2 = (byte)21;
97 assertEquals("buffer[0]", BYTE2, buffer[0]);
98 assertEquals("buffer[1]", BYTE2, buffer[1]);
99 assertEquals("buffer[2]", BYTE2, buffer[2]);
173 // Arrays.fill(BUFFER, BYTE2);
  /toolchain/binutils/binutils-2.25/binutils/
unwind-ia64.c 611 unsigned char byte1, byte2, abreg, x, ytreg; local
615 byte2 = *dp++;
618 ytreg = byte2;
631 unsigned char byte1, byte2, abreg, qp; local
635 byte2 = *dp++;
640 abreg = (byte2 & 0x7f);
653 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
657 byte2 = *dp++;
662 abreg = (byte2 & 0x7f);
663 x = (byte2 >> 7) & 1
783 unw_word grmask, frmask, byte1, byte2, byte3; local
815 unsigned char r, byte1, byte2; local
    [all...]
  /external/valgrind/none/tests/s390x/
clcl.c 155 uint8_t byte, byte1, byte2; local
165 byte2 = 20;
166 run_test(&byte1, 1, &byte2, 1, 0x00); // first operand low
168 run_test(&byte2, 1, &byte1, 1, 0x00); // first operand high
169 run_test(&byte1, 1, &byte2, 1, 0xFF); // first operand low
171 run_test(&byte2, 1, &byte1, 1, 0xFF); // first operand high
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 141 char2b.byte2 = (c & 0xff);
167 unsigned int byte1 = 0, byte2 = 0; local
180 byte2 = which & 0xff;
182 if ((fs->min_char_or_byte2 > byte2) ||
183 (fs->max_char_or_byte2 < byte2) ||
197 (byte2 - fs->min_char_or_byte2);
  /external/mesa3d/src/glx/
xfont.c 147 char2b.byte2 = (c & 0xff);
173 int byte1 = 0, byte2 = 0; local
186 byte2 = which & 0xff;
188 if ((fs->min_char_or_byte2 > byte2) ||
189 (fs->max_char_or_byte2 < byte2) ||
203 (byte2 - fs->min_char_or_byte2);
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 148 char2b.byte2 = (c & 0xff);
174 unsigned int byte1 = 0, byte2 = 0; local
187 byte2 = which & 0xff;
189 if ((fs->min_char_or_byte2 > byte2) ||
190 (fs->max_char_or_byte2 < byte2) ||
204 (byte2 - fs->min_char_or_byte2);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
Collation.java 514 int byte2 = ((int)(basePrimary >> 16) & 0xff) - step;
516 if(byte2 < 4) {
517 byte2 += 251;
521 if(byte2 < 2) {
522 byte2 += 254;
526 return (basePrimary & 0xff000000L) | (byte2 << 16);
543 int byte2 = ((int)(basePrimary >> 16) & 0xff) - 1;
545 if(byte2 < 4) {
546 byte2 = 0xfe;
550 if(byte2 < 2)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
Collation.java 512 int byte2 = ((int)(basePrimary >> 16) & 0xff) - step;
514 if(byte2 < 4) {
515 byte2 += 251;
519 if(byte2 < 2) {
520 byte2 += 254;
524 return (basePrimary & 0xff000000L) | (byte2 << 16);
541 int byte2 = ((int)(basePrimary >> 16) & 0xff) - 1;
543 if(byte2 < 4) {
544 byte2 = 0xfe;
548 if(byte2 < 2)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
FieldPackerTest.java 19 import android.renderscript.Byte2;
70 fp.addI8(new Byte2());
  /external/llvm/include/llvm/Support/
SwapByteOrder.h 50 uint32_t Byte2 = value & 0x00FF0000;
52 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /external/valgrind/VEX/priv/
guest_s390_helpers.c 606 UInt byte2 = (0x80 | klmnop); local
608 retval = (byte1 << 8) | byte2;
616 UInt byte2 = 0x80 | efghij; local
619 retval = (byte1 << 16) | (byte2 << 8) | byte3;
628 UInt byte2 = 0x80 | (xy << 4) | efgh; local
632 retval = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
685 /* The function performs a CU12 or CU14 operation. BYTE1, BYTE2, etc are the
699 s390_do_cu12_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
717 if (byte2 < 0x80 || byte2 > 0xbf)
    [all...]
  /libcore/ojluni/src/main/java/java/util/prefs/
Base64.java 68 int byte2 = a[inCursor++] & 0xff; local
71 result.append(intToAlpha[(byte1 << 2)&0x3f | (byte2 >> 6)]);
72 result.append(intToAlpha[byte2 & 0x3f]);

Completed in 1316 milliseconds

1 2 3 4 5