Searched defs:Value (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
H A DSampler.java36 public enum Value { enum in class:Sampler
44 Value(int id) { method in class:Sampler.Value
56 Value mMin;
57 Value mMag;
58 Value mWrapS;
59 Value mWrapT;
60 Value mWrapR;
64 mMin = Value.NEAREST;
65 mMag = Value.NEAREST;
66 mWrapS = Value
[all...]
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp109 Int Value) */
116 /* Value those bits value */
120 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value) argument
127 stream->word |= Value; /* assuming Value is not larger than Length */
136 stream->word |= ((UInt)Value >> Length);
144 /* we got new Length and Value */
145 /* note that Value is not "clean" because of msb are not masked out */
146 stream->word = Value;
157 /* Function : BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, UInt32 Value) */
168 BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, ULong Value) argument
[all...]

Completed in 93 milliseconds