/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/ |
d3_14pf.cpp | 179 j = index & 0x1; 193 j = index & 0x1;
|
d4_17pf.cpp | 230 j = index & 0x1; 250 i = sign & 0x1;
|
post_pro.cpp | 186 state->x1 = 0; 226 state->x1 = 0; 296 x2 = st->x1; 297 st->x1 = st->x0; 306 L_tmp = L_mac (L_tmp, st->x1, b[1]); 365 x2 = st->x1; 366 st->x1 = st->x0; 377 L_tmp += ((Word32) st->x1) * c_b1;
|
post_pro.h | 107 Word16 x1; member in struct:__anon3485
|
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
block_idct.cpp | 517 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 540 x1 = (int32)blk[12] << 8; 566 x8 = x0 + x1; 567 x0 -= x1; 568 x1 = W6 * (x3 + x2) + 4; 569 x2 = (x1 - (W2 + W6) * x2) >> 3; 570 x3 = (x1 + (W2 - W6) * x3) >> 3; 571 x1 = x4 + x6; 587 res = (x7 + x1) >> 14; 610 res = (x7 - x1) >> 14 628 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local 838 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local [all...] |
/frameworks/base/awt/java/awt/geom/ |
RectangularShape.java | 190 * @param x1 199 public void setFrameFromDiagonal(double x1, double y1, double x2, double y2) { 201 if (x1 < x2) { 202 rx = x1; 203 rw = x2 - x1; 206 rw = x1 - x2; 277 int x1 = (int)Math.floor(getMinX()); local 281 return new Rectangle(x1, y1, x2 - x1, y2 - y1);
|
/frameworks/base/media/libstagefright/codecs/amrnb/dec/src/ |
d3_14pf.cpp | 179 j = index & 0x1; 193 j = index & 0x1;
|
d4_17pf.cpp | 230 j = index & 0x1; 250 i = sign & 0x1;
|
post_pro.cpp | 186 state->x1 = 0; 226 state->x1 = 0; 296 x2 = st->x1; 297 st->x1 = st->x0; 306 L_tmp = L_mac (L_tmp, st->x1, b[1]); 365 x2 = st->x1; 366 st->x1 = st->x0; 377 L_tmp += ((Word32) st->x1) * c_b1;
|
post_pro.h | 107 Word16 x1; member in struct:__anon7388
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
block_idct.cpp | 516 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 539 x1 = (int32)blk[12] << 8; 565 x8 = x0 + x1; 566 x0 -= x1; 567 x1 = W6 * (x3 + x2) + 4; 568 x2 = (x1 - (W2 + W6) * x2) >> 3; 569 x3 = (x1 + (W2 - W6) * x3) >> 3; 570 x1 = x4 + x6; 586 res = (x7 + x1) >> 14; 609 res = (x7 - x1) >> 14 627 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local 837 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local [all...] |
/bionic/libc/kernel/common/asm-generic/ |
mman.h | 15 #define PROT_READ 0x1
|
/external/dbus/dbus/ |
dbus-shared.h | 103 #define DBUS_NAME_FLAG_ALLOW_REPLACEMENT 0x1 /**< Allow another service to become the primary owner if requested */
|
/external/iproute2/include/linux/ |
if_vlan.h | 34 VLAN_FLAG_REORDER_HDR = 0x1,
|
ip6_tunnel.h | 10 #define IP6_TNL_F_IGN_ENCAP_LIMIT 0x1
|
/external/kernel-headers/original/asm-generic/ |
mman.h | 9 #define PROT_READ 0x1 /* page can be read */
|
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/ |
pre_proc.h | 79 Word16 x1; member in struct:__anon3500
|
/external/webkit/WebCore/rendering/ |
HitTestRequest.h | 30 ReadOnly = 0x1,
|
/external/webkit/WebCore/svg/ |
SVGParserUtilities.cpp | 212 virtual void svgMoveTo(double x1, double y1, bool closed, bool abs = true) = 0; 213 virtual void svgLineTo(double x1, double y1, bool abs = true) = 0; 216 virtual void svgCurveToCubic(double x1, double y1, double x2, double y2, double x, double y, bool abs = true) = 0; 218 virtual void svgCurveToQuadratic(double /*x*/, double /*y*/, double /*x1*/, double /*y1*/, bool /*abs*/ = true) { } 232 double contrlx, contrly, curx, cury, subpathx, subpathy, tox, toy, x1, y1, x2, y2, xc, yc; local 349 if (!parseNumber(ptr, end, x1) || !parseNumber(ptr, end, y1) || 355 px1 = relative ? curx + x1 : x1; 371 svgCurveToCubic(narrowPrecisionToFloat(x1), narrowPrecisionToFloat(y1), narrowPrecisionToFloat(x2), 415 if (!parseNumber(ptr, end, x1) || !parseNumber(ptr, end, y1) | 541 double x0, y0, x1, y1, xc, yc; local 631 double x1, y1, x2, y2, x3, y3; local [all...] |
/frameworks/base/awt/java/awt/ |
GradientPaint.java | 114 * @param x1 130 public GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2, 132 this(new Point2D.Float(x1, y1), color1, new Point2D.Float(x2, y2), color2, cyclic); 139 * @param x1 152 public GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2) { 153 this(x1, y1, color1, x2, y2, color2, false);
|
/frameworks/base/core/java/android/os/ |
LocalPowerManager.java | 31 public static final int POKE_LOCK_IGNORE_CHEEK_EVENTS = 0x1;
|
/frameworks/base/core/java/android/provider/ |
LiveFolders.java | 234 public static final int DISPLAY_MODE_GRID = 0x1;
|
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
pre_proc.h | 79 Word16 x1; member in struct:__anon7402
|
/ndk/build/platforms/android-3/arch-arm/usr/include/asm-generic/ |
mman.h | 15 #define PROT_READ 0x1
|
/ndk/build/platforms/android-4/arch-arm/usr/include/asm-generic/ |
mman.h | 15 #define PROT_READ 0x1
|