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

  /hardware/ti/omap4xxx/security/tf_sdk/include/
s_type.h 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
42 /* Figure out if a 64-bit integer types is available */
103 #define OUT
  /packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java 25 * With a regular ValueAnimator, if you call reverse to show the 'out' animation, you'll get
27 * be exactly reversed. Using this class, both the 'in' and the 'out' animation use the
42 private static final int OUT = 2;
116 animate(OUT);
  /hardware/ti/omap3/dspbridge/inc/
dbtype.h 60 #ifndef OUT
61 #define OUT /* Following parameter is for output. */
  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbtype.h 60 #ifndef OUT
61 #define OUT /* Following parameter is for output. */
  /bionic/libc/regex/
regex2.h 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
97 * and a mask to pick out the relevant bit of each byte. A hash code
156 #define OUT (CHAR_MAX+1) /* a non-character value */
  /external/llvm/lib/Support/
regex2.h 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
97 * and a mask to pick out the relevant bit of each byte. A hash code
156 #define OUT (CHAR_MAX+1) /* a non-character value */
  /external/qemu-pc-bios/vgabios/tests/lfbprof/
lfbprof.c 104 #define OUT(reg) out->x.reg = rmregs.e##reg
106 int DPMI_int86(int intno, RMREGS *in, RMREGS *out)
112 * out - Pointer to structure for output registers
135 OUT(ax); OUT(bx); OUT(cx); OUT(dx); OUT(si); OUT(di)
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regex2.h 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
97 * and a mask to pick out the relevant bit of each byte. A hash code
156 #define OUT (CHAR_MAX+1) /* a non-character value */
  /external/webp/src/dec/
dsp.c 145 static void TransformWHT(const int16_t* in, int16_t* out) {
164 out[ 0] = (a0 + a1) >> 3;
165 out[16] = (a3 + a2) >> 3;
166 out[32] = (a0 - a1) >> 3;
167 out[48] = (a3 - a2) >> 3;
168 out += 64;
172 void (*VP8TransformWHT)(const int16_t* in, int16_t* out) = TransformWHT;
177 #define OUT(x, y) dst[(x) + (y) * BPS]
302 OUT(0, 3) = AVG3(J, K, L);
303 OUT(0, 2) = OUT(1, 3) = AVG3(I, J, K)
    [all...]
  /external/webp/src/enc/
dsp.c 47 int16_t out[16]; local
50 VP8FTransform(ref + VP8Scan[j], pred + VP8Scan[j], out);
52 // Convert coefficients to bin (within out[]).
54 const int v = abs(out[k]) >> 2;
55 out[k] = (v > MAX_COEFF_THRESH) ? MAX_COEFF_THRESH : v;
60 histo[out[k]]++;
141 static void FTransform(const uint8_t* src, const uint8_t* ref, int16_t* out) {
163 out[0 + i] = (a0 + a1 + 7) >> 4;
164 out[4 + i] = ((a2 * 2217 + a3 * 5352 + 12000) >> 16) + (a3 != 0);
165 out[8 + i] = (a0 - a1 + 7) >> 4
    [all...]

Completed in 955 milliseconds