Searched defs:packed (Results 1 - 25 of 72) sorted by last modified time

123

/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
H A Dg722_enc_dec.h63 /*! TRUE if the G.722 data is packed */
64 int packed; member in struct:__anon26133
101 /*! TRUE if the G.722 data is packed */
102 int packed; member in struct:__anon26135
/external/valgrind/perf/
H A Dtinycc.c2227 int packed;
2798 DEF(TOK_PACKED1, "packed")
4130 DEF(TOK_PACKED1, "packed")
12019 - packed : force data alignment to 1
12062 ad->packed = 1;
12220 } else if (ad.packed) {
14343 } else if (ad->packed) {
2225 int packed; member in struct:AttributeDef
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/v8/src/
H A Dobjects.cc4775 bool packed = IsFastPackedElementsKind(kind); local
4795 (packed || !IsFastPackedElementsKind(current->elements_kind()))) {
4797 packed = packed && IsFastPackedElementsKind(current->elements_kind());
/external/testng/ant/3rdparty/
H A DDTDDoc.jarMETA-INF/ META-INF/MANIFEST.MF DTDDoc/ DTDDoc/AntLogger.class AntLogger.java package DTDDoc ...
/external/swiftshader/src/Reactor/
H A DLLVMReactor.cpp2564 Value *packed = Nucleus::createShuffleVector(short8, short8, select); local
2565 Value *short4 = As<Short4>(Int2(As<Int4>(packed))).value;
3134 Value *packed = Nucleus::createShuffleVector(lo.value, hi.value, shuffle); local
3136 storeValue(packed);
3206 Value *packed = Nucleus::createShuffleVector(lo.value, hi.value, shuffle); local
3208 storeValue(packed);
4118 Value *packed = Nucleus::createShuffleVector(Int4(lo).loadValue(), Int4(hi).loadValue(), shuffle); local
4120 storeValue(Nucleus::createBitCast(packed, Int2::getType()));
4605 Value *packed = Nucleus::createShuffleVector(lo.value, hi.value, shuffle); local
4607 storeValue(packed);
4965 Value *packed = Nucleus::createShuffleVector(lo.value, hi.value, shuffle); local
[all...]
/external/swiftshader/src/Renderer/
H A DBlitter.cpp61 uint32_t packed; local
67 packed = ((uint16_t)(31 * b + 0.5f) << 0) |
73 packed = ((uint32_t)(255) << 24) |
80 packed = ((uint32_t)(255 * a + 0.5f) << 24) |
87 packed = ((uint32_t)(255) << 24) |
94 packed = ((uint32_t)(255 * a + 0.5f) << 24) |
110 sw::clear((uint16_t*)d, packed, dRect.x1 - dRect.x0);
117 sw::clear((uint32_t*)d, packed, dRect.x1 - dRect.x0);
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliFlexLexer.java129 private static int zzUnpackAction(String packed, int offset, int [] result) { argument
130 int i = 0; /* index in packed string */
132 int l = packed.length();
134 int count = packed.charAt(i++);
135 int value = packed.charAt(i++);
308 private static int zzUnpackRowMap(String packed, int offset, int [] result) { argument
309 int i = 0; /* index in packed string */
311 int l = packed.length();
313 int high = packed.charAt(i++) << 16;
314 result[j++] = high | packed
2814 zzUnpackTrans(String packed, int offset, int [] result) argument
2878 zzUnpackAttribute(String packed, int offset, int [] result) argument
3134 zzUnpackCMap(String packed) argument
[all...]
/external/skia/src/core/
H A DSkImageInfo.cpp93 uint32_t packed = buffer.read32(); local
94 fColorType = stored_to_live((packed >> 0) & kColorTypeMask);
95 fAlphaType = (SkAlphaType)((packed >> 8) & kAlphaTypeMask);
108 uint32_t packed = (fAlphaType << 8) | live_to_stored(fColorType); local
109 buffer.write32(packed);
H A DSkPath.cpp2049 int32_t packed = (fConvexity << kConvexity_SerializationShift) | local
2055 buffer.write32(packed);
2067 int32_t packed; local
2068 if (!buffer.readS32(&packed)) {
2072 unsigned version = packed & 0xFF;
2077 fConvexity = (packed >> kConvexity_SerializationShift) & 0xFF;
2078 fFillType = (packed >> kFillType_SerializationShift) & 0x3;
2079 uint8_t dir = (packed >> kDirection_SerializationShift) & 0x3;
2080 fIsVolatile = (packed >> kIsVolatile_SerializationShift) & 0x1;
H A DSkPictureFlat.h130 // clipparams are packed in 5 bits
147 static inline SkClipOp ClipParams_unpackRegionOp(SkReadBuffer* buffer, uint32_t packed) { argument
148 return asValidEnum<SkClipOp>(buffer, packed & 0xF);
151 static inline bool ClipParams_unpackDoAA(uint32_t packed) { argument
152 return SkToBool((packed >> 4) & 1);
H A DSkPicturePlayback.cpp139 uint32_t packed = reader->readInt(); local
140 SkClipOp clipOp = ClipParams_unpackRegionOp(reader, packed);
141 bool doAA = ClipParams_unpackDoAA(packed);
154 uint32_t packed = reader->readInt(); local
155 SkClipOp clipOp = ClipParams_unpackRegionOp(reader, packed);
168 uint32_t packed = reader->readInt(); local
169 SkClipOp clipOp = ClipParams_unpackRegionOp(reader, packed);
170 bool doAA = ClipParams_unpackDoAA(packed);
183 uint32_t packed = reader->readInt(); local
184 SkClipOp clipOp = ClipParams_unpackRegionOp(reader, packed);
[all...]
H A DSkVertices.cpp151 // storage = packed | vertex_count | index_count | pos[] | texs[] | colors[] | indices[]
160 // packed has room for addtional flags in the future (e.g. versioning)
161 uint32_t packed = static_cast<uint32_t>(fMode); local
162 SkASSERT((packed & ~kMode_Mask) == 0); // our mode fits in the mask bits
164 packed |= kHasTexs_Mask;
167 packed |= kHasColors_Mask;
178 writer.write32(packed);
197 const uint32_t packed = reader.readInt(); local
201 const VertexMode mode = static_cast<VertexMode>(packed & kMode_Mask);
202 const bool hasTexs = SkToBool(packed
[all...]
/external/skia/src/gpu/
H A DGrGlyph.h43 void init(GrGlyph::PackedID packed, const SkIRect& bounds, GrMaskFormat format) { argument
46 fPackedID = packed;
79 static inline SkFixed UnpackFixedX(PackedID packed) { argument
80 return ((packed >> 18) & 3) << 14;
83 static inline SkFixed UnpackFixedY(PackedID packed) { argument
84 return ((packed >> 16) & 3) << 14;
87 static inline MaskStyle UnpackMaskStyle(PackedID packed) { argument
88 return ((packed >> 20) & 1) ? kDistance_MaskStyle : kCoverage_MaskStyle;
91 static inline uint16_t UnpackID(PackedID packed) { argument
92 return (uint16_t)packed;
[all...]
/external/skia/src/gpu/text/
H A DGrAtlasGlyphCache.cpp418 GrGlyph* GrAtlasTextStrike::generateGlyph(const SkGlyph& skGlyph, GrGlyph::PackedID packed, argument
421 if (GrGlyph::kDistance_MaskStyle == GrGlyph::UnpackMaskStyle(packed)) {
433 glyph->init(packed, bounds, format);
H A DGrAtlasGlyphCache.h34 inline GrGlyph* getGlyph(const SkGlyph& skGlyph, GrGlyph::PackedID packed, argument
36 GrGlyph* glyph = fCache.find(packed);
38 glyph = this->generateGlyph(skGlyph, packed, cache);
47 inline GrGlyph* getGlyph(GrGlyph::PackedID packed, argument
50 GrGlyph* glyph = fCache.find(packed);
55 const SkGlyph& skGlyph = GrToSkGlyph(cache, packed);
56 glyph = this->generateGlyph(skGlyph, packed, cache);
/external/skia/src/pipe/
H A DSkPipeCanvas.cpp109 uint32_t packed = 0; local
112 shift -= kFlags_BPF; packed |= (flags << shift);
113 shift -= kFilter_BPF; packed |= (filter << shift);
114 shift -= kStyle_BPF; packed |= (style << shift);
116 shift -= kCaps_BPF; packed |= (caps << shift);
117 shift -= kJoins_BPF; packed |= (joins << shift);
119 shift -= kHint_BPF; packed |= (hint << shift);
120 shift -= kAlign_BPF; packed |= (align << shift);
121 shift -= kEncoding_BPF; packed |= (encoding << shift);
123 return packed;
[all...]
/external/skia/tests/
H A DPremulAlphaRoundTripTest.cpp18 uint32_t packed; local
19 uint8_t* byte = reinterpret_cast<uint8_t*>(&packed);
24 return packed;
28 uint32_t packed; local
29 uint8_t* byte = reinterpret_cast<uint8_t*>(&packed);
34 return packed;
H A DSkNxTest.cpp198 auto packed = Sk4px::Load4(colors); local
200 auto wideLo = packed.widenLo(),
201 wideHi = packed.widenHi(),
202 wideLoHi = packed.widenLoHi(),
/external/robolectric/v3/runtime/
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/robolectric/v3/libs/
H A Dvtd-xml-2.11.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ximpleware/ com/ximpleware/extended/ com/ximpleware/extended/parser/ ...

Completed in 634 milliseconds

123