HomeSort by relevance Sort by last modified time
    Searched refs:INT32 (Results 26 - 50 of 238) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/v8/src/
ic.cc     [all...]
  /external/jpeg/
jdct.h 19 * for 8-bit samples, INT32 for 12-bit samples. (NOTE: Floating-point DCT
36 typedef INT32 DCTELEM; /* must have 32 bits */
65 typedef INT32 IFAST_MULT_TYPE; /* need 32 bits for scaled quantizers */
129 * All values are expected to be of type INT32.
135 #define ONE ((INT32) 1)
143 #define FIX(x) ((INT32) ((x) * CONST_SCALE + 0.5))
145 /* Descale and correctly round an INT32 value that's scaled by N bits.
152 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result
    [all...]
rdbmp.c 248 #define GET_4B(array,offset) ((INT32) UCH(array[offset]) + \
249 (((INT32) UCH(array[offset+1])) << 8) + \
250 (((INT32) UCH(array[offset+2])) << 16) + \
251 (((INT32) UCH(array[offset+3])) << 24))
252 INT32 bfOffBits;
253 INT32 headerSize;
254 INT32 biWidth = 0; /* initialize to avoid compiler warning */
255 INT32 biHeight = 0;
257 INT32 biCompression;
258 INT32 biXPelsPerMeter,biYPelsPerMeter
    [all...]
jidctflt.c 221 outptr[0] = range_limit[(int) DESCALE((INT32) (tmp0 + tmp7), 3)
223 outptr[7] = range_limit[(int) DESCALE((INT32) (tmp0 - tmp7), 3)
225 outptr[1] = range_limit[(int) DESCALE((INT32) (tmp1 + tmp6), 3)
227 outptr[6] = range_limit[(int) DESCALE((INT32) (tmp1 - tmp6), 3)
229 outptr[2] = range_limit[(int) DESCALE((INT32) (tmp2 + tmp5), 3)
231 outptr[5] = range_limit[(int) DESCALE((INT32) (tmp2 - tmp5), 3)
233 outptr[4] = range_limit[(int) DESCALE((INT32) (tmp3 + tmp4), 3)
235 outptr[3] = range_limit[(int) DESCALE((INT32) (tmp3 - tmp4), 3)
jdcolor.c 26 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
27 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
43 static const INT32 dither_matrix[4] = {
83 #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
84 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
96 INT32 x;
105 cconvert->Cr_g_tab = (INT32 *)
107 (MAXJSAMPLE+1) * SIZEOF(INT32));
108 cconvert->Cb_g_tab = (INT32 *)
110 (MAXJSAMPLE+1) * SIZEOF(INT32));
    [all...]
jdmerge.c 51 static const INT32 dither_matrix[4] = {
73 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
74 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
91 #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
92 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
105 INT32 x;
114 upsample->Cr_g_tab = (INT32 *)
116 (MAXJSAMPLE+1) * SIZEOF(INT32));
117 upsample->Cb_g_tab = (INT32 *)
119 (MAXJSAMPLE+1) * SIZEOF(INT32));
    [all...]
jdhuff.h 28 INT32 maxcode[18]; /* largest code of length k (-1 if none) */
30 INT32 valoffset[17]; /* huffval[] offset for codes of length k */
72 typedef INT32 bit_buf_type; /* type of bit-extraction buffer */
jfdctfst.c 79 #define FIX_0_382683433 ((INT32) 98) /* FIX(0.382683433) */
80 #define FIX_0_541196100 ((INT32) 139) /* FIX(0.541196100) */
81 #define FIX_0_707106781 ((INT32) 181) /* FIX(0.707106781) */
82 #define FIX_1_306562965 ((INT32) 334) /* FIX(1.306562965) */
102 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
  /external/pdfium/core/src/fxcodec/libjpeg/
jdct.h 19 * for 8-bit samples, INT32 for 12-bit samples. (NOTE: Floating-point DCT
32 typedef INT32 DCTELEM; /* must have 32 bits */
61 typedef INT32 IFAST_MULT_TYPE; /* need 32 bits for scaled quantizers */
125 * All values are expected to be of type INT32.
131 #define ONE ((INT32) 1)
139 #define FIX(x) ((INT32) ((x) * CONST_SCALE + 0.5))
141 /* Descale and correctly round an INT32 value that's scaled by N bits.
148 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.
    [all...]
fpdfapi_jdcolor.c 25 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
26 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
62 #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
63 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
75 INT32 x;
84 cconvert->Cr_g_tab = (INT32 *)
86 (MAXJSAMPLE+1) * SIZEOF(INT32));
87 cconvert->Cb_g_tab = (INT32 *)
89 (MAXJSAMPLE+1) * SIZEOF(INT32));
135 register INT32 * Crgtab = cconvert->Cr_g_tab;
    [all...]
fpdfapi_jdmerge.c 59 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
60 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
77 #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
78 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
91 INT32 x;
100 upsample->Cr_g_tab = (INT32 *)
102 (MAXJSAMPLE+1) * SIZEOF(INT32));
103 upsample->Cb_g_tab = (INT32 *)
105 (MAXJSAMPLE+1) * SIZEOF(INT32));
244 INT32 * Crgtab = upsample->Cr_g_tab;
    [all...]
jdhuff.h 28 INT32 maxcode[18]; /* largest code of length k (-1 if none) */
30 INT32 valoffset[17]; /* huffval[] offset for codes of length k */
72 typedef INT32 bit_buf_type; /* type of bit-extraction buffer */
fpdfapi_jfdctfst.c 80 #define FIX_0_382683433 ((INT32) 98) /* FIX(0.382683433) */
81 #define FIX_0_541196100 ((INT32) 139) /* FIX(0.541196100) */
82 #define FIX_0_707106781 ((INT32) 181) /* FIX(0.707106781) */
83 #define FIX_1_306562965 ((INT32) 334) /* FIX(1.306562965) */
103 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
  /external/qemu/distrib/jpeg-6b/
jdct.h 19 * for 8-bit samples, INT32 for 12-bit samples. (NOTE: Floating-point DCT
32 typedef INT32 DCTELEM; /* must have 32 bits */
61 typedef INT32 IFAST_MULT_TYPE; /* need 32 bits for scaled quantizers */
125 * All values are expected to be of type INT32.
131 #define ONE ((INT32) 1)
139 #define FIX(x) ((INT32) ((x) * CONST_SCALE + 0.5))
141 /* Descale and correctly round an INT32 value that's scaled by N bits.
148 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result
    [all...]
rdbmp.c 248 #define GET_4B(array,offset) ((INT32) UCH(array[offset]) + \
249 (((INT32) UCH(array[offset+1])) << 8) + \
250 (((INT32) UCH(array[offset+2])) << 16) + \
251 (((INT32) UCH(array[offset+3])) << 24))
252 INT32 bfOffBits;
253 INT32 headerSize;
254 INT32 biWidth = 0; /* initialize to avoid compiler warning */
255 INT32 biHeight = 0;
257 INT32 biCompression;
258 INT32 biXPelsPerMeter,biYPelsPerMeter
    [all...]
jidctflt.c 221 outptr[0] = range_limit[(int) DESCALE((INT32) (tmp0 + tmp7), 3)
223 outptr[7] = range_limit[(int) DESCALE((INT32) (tmp0 - tmp7), 3)
225 outptr[1] = range_limit[(int) DESCALE((INT32) (tmp1 + tmp6), 3)
227 outptr[6] = range_limit[(int) DESCALE((INT32) (tmp1 - tmp6), 3)
229 outptr[2] = range_limit[(int) DESCALE((INT32) (tmp2 + tmp5), 3)
231 outptr[5] = range_limit[(int) DESCALE((INT32) (tmp2 - tmp5), 3)
233 outptr[4] = range_limit[(int) DESCALE((INT32) (tmp3 + tmp4), 3)
235 outptr[3] = range_limit[(int) DESCALE((INT32) (tmp3 - tmp4), 3)
jdcolor.c 24 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
25 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
41 static const INT32 dither_matrix[4] = {
81 #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
82 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
94 INT32 x;
103 cconvert->Cr_g_tab = (INT32 *)
105 (MAXJSAMPLE+1) * SIZEOF(INT32));
106 cconvert->Cb_g_tab = (INT32 *)
108 (MAXJSAMPLE+1) * SIZEOF(INT32));
    [all...]
jdmerge.c 51 static const INT32 dither_matrix[4] = {
73 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
74 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
91 #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
92 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
105 INT32 x;
114 upsample->Cr_g_tab = (INT32 *)
116 (MAXJSAMPLE+1) * SIZEOF(INT32));
117 upsample->Cb_g_tab = (INT32 *)
119 (MAXJSAMPLE+1) * SIZEOF(INT32));
    [all...]
jdhuff.h 28 INT32 maxcode[18]; /* largest code of length k (-1 if none) */
30 INT32 valoffset[17]; /* huffval[] offset for codes of length k */
72 typedef INT32 bit_buf_type; /* type of bit-extraction buffer */
  /external/bluetooth/bluedroid/bta/dm/
bta_dm_sco.c 51 typedef INT32 (*PCONVERT_TO_BT_FILTERED) (UINT8 *pSrc, void *pDst, UINT32 dwSrcSamples,
52 UINT32 dwSrcSps,INT32 *pLastCurPos, UINT8 *pOverlapArea);
53 typedef INT32 (*PCONVERT_TO_BT_NOFILTER) (void *pSrc, void *pDst, UINT32 dwSrcSamples,
88 INT32 out1, out2, out3, out4, out5; \
142 INT32 out1, out2, out3, out4, out5; \
195 INT32 out1; \
242 INT32 Convert_8M_ToBT_Filtered (UINT8 *pSrc, void *pDst, UINT32 dwSrcSamples,
243 UINT32 dwSrcSps, INT32 *pLastCurPos, UINT8 *pOverlapArea)
245 INT32 CurrentPos = *pLastCurPos;
285 INT32 Convert_8M_ToBT_NoFilter (void *pSrc, void *pDst, UINT32 dwSrcSamples, UINT32 dwSrcSps
    [all...]
  /external/bluetooth/bluedroid/gki/common/
gki.h 92 INT32 ticks;
93 INT32 ticks_initial;
189 GKI_API extern INT32 GKI_ready_to_sleep (void);
191 GKI_API extern void GKI_start_timer(UINT8, INT32, BOOLEAN);
193 GKI_API extern void GKI_timer_update(INT32);
194 GKI_API extern UINT16 GKI_update_timer_list (TIMER_LIST_Q *, INT32);
199 GKI_API extern INT32 GKI_timer_ticks_getinitial(const TIMER_LIST_ENT *tle);
  /external/bluetooth/bluedroid/gki/ulinux/
data_types.h 40 typedef int32_t INT32;
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
pack_tests.py 20 struct.AddField('testfield1', mojom.INT32, 2)
21 struct.AddField('testfield2', mojom.INT32, 1)
71 (mojom.INT8, mojom.UINT8, mojom.INT32),
78 (mojom.INT8, mojom.INT32, mojom.UINT8),
84 kinds = (mojom.INT8, mojom.INT32, mojom.INT16, mojom.INT8, mojom.INT8)
97 mojom.INT32, mojom.UINT32, mojom.INT64,
109 struct.AddField('testfield2', mojom.INT32, 2)
131 struct.AddField('int', mojom.INT32)
  /external/chromium_org/win8/metro_driver/
winrt_utils.h 36 DECLARE_CREATE_PROPERTY(Int32, INT32);
49 INT32* result);
winrt_utils_unittest.cc 33 static HRESULT CreateProperty<INT32>(INT32 value,
82 INT32 result = 42;
106 TestCompareProperties<INT32>(42, 43);

Completed in 1173 milliseconds

12 3 4 5 6 7 8 910