Searched refs:xf (Results 1 - 25 of 59) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_tab.cpp227 {0x11, 1, 0, 9}, {0x11, 1, 0, 9}, {0x10, 1, 0, 9}, {0x10, 1, 0, 9}, {0xf, 1, 0, 9}, {0xf, 1, 0, 9},
230 {0xf, 1, 1, 8}, {0xf, 1, 1, 8}, {0xf, 1, 1, 8}, {0xf, 1, 1, 8}, {0xe, 1, 1, 8}, {0xe, 1, 1, 8},
257 {0x25, 1, 1, 12}, {0x26, 1, 1, 12}, {0x27, 1, 1, 12}, {0x28, 1, 1, 12}, {0xbf, 0xf, 1, 7},
258 {0xbf, 0xf, 1, 7}, {0xbf, 0xf, 1, 7}, {0xbf, 0xf,
[all...]
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A Dresize.rs27 float xf = clamp(x * scale, 0.f, (float)gWidthIn - 1.f);
29 uint32_t ix = xf;
44 float xf = x * scale;
47 int startx = (int) floor(xf - 2);
49 xf = xf - floor(xf);
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf);
74 float4 p1 = cubicInterpolate(p10, p11, p12, p13, xf);
80 float4 p2 = cubicInterpolate(p20, p21, p22, p23, xf);
[all...]
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A Dresize.rs27 float xf = clamp(x * scale, 0.f, (float)gWidthIn - 1.f);
29 uint32_t ix = xf;
44 float xf = x * scale;
47 int startx = (int) floor(xf - 2);
49 xf = xf - floor(xf);
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf);
74 float4 p1 = cubicInterpolate(p10, p11, p12, p13, xf);
80 float4 p2 = cubicInterpolate(p20, p21, p22, p23, xf);
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicResize.cpp85 float xf, float yf, int width) {
86 int startx = (int) floor(xf - 1);
87 xf = xf - floor(xf);
97 convert_float4(yp0[xs3]), xf);
102 convert_float4(yp1[xs3]), xf);
107 convert_float4(yp2[xs3]), xf);
112 convert_float4(yp3[xs3]), xf);
120 float xf, floa
84 OneBiCubic(const uchar4 *yp0, const uchar4 *yp1, const uchar4 *yp2, const uchar4 *yp3, float xf, float yf, int width) argument
119 OneBiCubic(const uchar2 *yp0, const uchar2 *yp1, const uchar2 *yp2, const uchar2 *yp3, float xf, float yf, int width) argument
154 OneBiCubic(const uchar *yp0, const uchar *yp1, const uchar *yp2, const uchar *yp3, float xf, float yf, int width) argument
211 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; local
251 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; local
291 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; local
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DBase64.java108 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
119 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dpvamrwbdecoder_basic_op.h120 var2 = (-var2) & (0xf);
125 var2 &= 0xf;
172 var2 = (-var2) & (0xf);
H A Dscale_signal.cpp140 exp &= 0xf;
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_huffman_decoding.cpp212 y = cw & 0xf;
221 y = cw & 0xf;
278 y = cw & 0xf;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTextColor.java41 BRIGHT_MAGENTA(0xf);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccUtils.java37 * Assumes left-justified field that may be padded right with 0xf
50 v = data[i] & 0xf;
54 v = (data[i] >> 4) & 0xf;
56 if (v == 0xf) continue;
74 v = data[i] & 0xf;
80 v = (data[i] >> 4) & 0xf;
108 ret = (b >> 4) & 0xf;
112 ret += (b & 0xf) * 10;
130 ret = ((b >> 4) & 0xf) * 10;
134 ret += (b & 0xf);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccUtils.java37 * Assumes left-justified field that may be padded right with 0xf
50 v = data[i] & 0xf;
54 v = (data[i] >> 4) & 0xf;
56 if (v == 0xf) continue;
74 v = data[i] & 0xf;
80 v = (data[i] >> 4) & 0xf;
108 ret = (b >> 4) & 0xf;
112 ret += (b & 0xf) * 10;
130 ret = ((b >> 4) & 0xf) * 10;
134 ret += (b & 0xf);
[all...]
/frameworks/native/libs/gui/tests/
H A DFillBuffer.cpp31 int yuvTexStrideV = (yuvTexStrideY/2 + 0xf) & ~0xf;
59 int yuvTexStrideV = (yuvTexStrideY/2 + 0xf) & ~0xf;
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DIntegralToString.java452 sb.append(digits[(b >> 4) & 0xf]);
453 sb.append(digits[b & 0xf]);
460 buf[0] = digits[(b >> 4) & 0xf];
461 buf[1] = digits[b & 0xf];
470 buf[c++] = digits[(b >> 4) & 0xf];
471 buf[c++] = digits[b & 0xf];
483 buf[--cursor] = digits[i & 0xf];
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_Lookup_Tables.c52 0xe, 0xf, 0xf, 0x10, 0x10, 0x11, 0x11, 0x12,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DarmVCM4P2_Lookup_Tables.c52 0xe, 0xf, 0xf, 0x10, 0x10, 0x11, 0x11, 0x12,
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSymbol.h81 #define ELF_ST_TYPE(i) ((i)&0xf)
82 #define ELF_ST_INFO(b,t) (((b)<<4)+((t)&0xf))
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp84 const int yuvTexStrideY = (yuvTexWidth + 0xf) & ~0xf;
86 const int yuvTexStrideV = (yuvTexStrideY/2 + 0xf) & ~0xf;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
H A DarmVCM4P10_DecodeCoeffsToPair_s.S138 TEQ r7,#0xf
141 ADDEQ r7,r7,#0xf
244 CMP r7,#0xf
258 TEQ r8,#0xf
/frameworks/base/core/java/android/app/
H A DService.java330 public static final int START_CONTINUATION_MASK = 0xf;
/frameworks/base/core/java/android/content/pm/
H A DPermissionInfo.java81 public static final int PROTECTION_MASK_BASE = 0xf;
H A DSignature.java135 int d = (v>>4)&0xf;
137 d = v&0xf;
/frameworks/multidex/library/test/src/android/support/multidex/
H A DZipEntryReader.java114 cal.set(1980 + ((modDate >> 9) & 0x7f), ((modDate >> 5) & 0xf) - 1,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
H A DomxVCCOMM_ExpandFrame_I_s.s95 TST pSrcDstPlane, #0xf
96 TSTEQ iPlaneStep, #0xf
/frameworks/av/media/libstagefright/
H A DXINGSeeker.cpp184 seeker->mEncoderPadding = ((buffer[1] & 0xf) << 8) + buffer[2];
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbDebuggingManager.java252 sb.append(hex.charAt((digest[i] >> 4) & 0xf));
253 sb.append(hex.charAt(digest[i] & 0xf));

Completed in 2571 milliseconds

123