HomeSort by relevance Sort by last modified time
    Searched defs:packed (Results 1 - 14 of 14) sorted by null

  /system/core/libpixelflinger/
clear.cpp 50 static void memset2d(context_t* c, const surface_t& s, uint32_t packed,
67 memset(dst, packed, w);
73 android_memset16((uint16_t*)dst, packed, w);
81 android_memset32((uint32_t*)dst, packed, w);
130 const uint32_t packed = c->state.clear.colorPacked; local
131 memset2d(c, c->state.buffers.color, packed, l, t, w, h);
139 const uint32_t packed = c->state.clear.depthPacked; local
140 memset2d(c, c->state.buffers.depth, packed, l, t, w, h);
scanline.cpp 2227 uint32_t packed = c->packed; local
2238 uint32_t packed = c->packed; local
2249 uint32_t packed = GGL_HOST_TO_RGBA(c->packed); local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
Input.java 34 public boolean packed; field in class:Input
48 packed = false;
63 packed = in.readInt() == 1 ? true : false;
82 dest.writeInt(packed ? 1 : 0);
  /frameworks/base/libs/rs/
rsUtils.h 65 uint32_t packed; member in union:android::renderscript::uchar4
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
SwitchData.java 28 * in either a "packed" or "sparse" form.
46 /** whether the output table will be packed (vs. sparse) */
47 private final boolean packed; field in class:SwitchData
89 this.packed = shouldPack(cases);
95 return packed ? (int) packedCodeSize(cases) :
106 if (packed) {
152 * Returns whether or not this instance's data will be output as packed.
154 * @return {@code true} iff the data is to be packed
157 return packed;
183 sb.append(packed ? "packed" : "sparse")
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 29 * in either a "packed" or "sparse" form.
47 /** whether the output table will be packed (vs. sparse) */
48 private final boolean packed; field in class:SwitchData
90 this.packed = shouldPack(cases);
96 return packed ? (int) packedCodeSize(cases) :
107 if (packed) {
153 * Returns whether or not this instance's data will be output as packed.
155 * @return {@code true} iff the data is to be packed
158 return packed;
184 sb.append(packed ? "packed" : "sparse")
    [all...]
  /external/skia/src/core/
SkFloat.cpp 22 static int get_unsigned_exp(uint32_t packed)
24 return (packed << 1 >> 24);
27 static unsigned get_unsigned_value(uint32_t packed)
29 return (packed << 9 >> 9) | (1 << 23);
32 static int get_signed_value(int32_t packed)
34 return SkApplySign(get_unsigned_value(packed), SkExtractSign(packed));
39 int SkFloat::GetShift(int32_t packed, int shift)
41 if (packed == 0)
44 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift
103 int32_t packed = sign << 31; \/\/ set the sign-bit local
    [all...]
  /external/icu4c/test/cintltst/
bocu1tst.c 126 /* The length of a byte sequence, according to its packed form. */
127 #define BOCU1_LENGTH_FROM_PACKED(packed) \
128 ((uint32_t)(packed)<0x04000000 ? (packed)>>24 : 4)
273 * and return a packed integer with them.
330 /* encode the length of the packed result */
359 * @return the packed 1/2/3/4-byte encoding, see packDiff(),
599 * Write a packed BOCU-1 byte sequence into a byte array,
603 * @param packed packed BOCU-1 byte sequence, see packDiff(
679 int32_t packed, initialPrev; local
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
AddressUnitTests.java 617 String packed = Address.pack(list); local
618 assertTrue(packed, addressArrayEquals(list, Address.unpack(packed)));
630 String packed = Address.pack(list); local
631 String s1 = Address.unpackToString(packed);
632 String s2 = Address.toString(Address.unpack(packed));
666 String packed = Address.pack(list); local
667 Address[] array = Address.unpack(packed);
668 Address first = Address.unpackFirst(packed);
669 assertTrue(packed, addressEquals(array[0], first))
    [all...]
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.h 288 uint32_t packed : 1; member in struct:android::GGLAssembler::fragment_parts_t
  /system/core/include/private/pixelflinger/
ggl_context.h 513 uint32_t packed; member in struct:android::context_t
  /external/protobuf/src/google/protobuf/
descriptor.pb.h 3892 inline bool FieldOptions::packed() const { function in class:google::protobuf::FieldOptions
    [all...]
  /external/valgrind/main/perf/
tinycc.c 2225 int packed; member in struct:AttributeDef
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 379 milliseconds