HomeSort by relevance Sort by last modified time
    Searched refs:input (Results 1 - 25 of 5918) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lldb/test/python_api/module_section/
b.cpp 1 int b_function(int input) {
2 return input * 2;
c.cpp 1 int c_function(int input) {
2 return input * 3;
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Abs_32.c 26 * Input : Signed 32-bit integer
33 LVM_INT32 Abs_32(LVM_INT32 input)
35 if(input < 0)
37 if (input == (LVM_INT32)(0x80000000U))
40 input=(LVM_INT32) 0x7fffffff;
44 /* Negative input, so invert */
45 input = (LVM_INT32)(-input);
48 return input;
  /packages/apps/Contacts/src/com/android/contacts/util/
MoreMath.java 24 * If the input value lies outside of the specified range, return the nearer
25 * bound. Otherwise, return the input value, unchanged.
27 public static int clamp(int input, int lowerBound, int upperBound) {
28 if (input < lowerBound) return lowerBound;
29 if (input > upperBound) return upperBound;
30 return input;
34 * If the input value lies outside of the specified range, return the nearer
35 * bound. Otherwise, return the input value, unchanged.
37 public static float clamp(float input, float lowerBound, float upperBound) {
38 if (input < lowerBound) return lowerBound
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
Ease.java 28 public float getInterpolation(float input) {
29 return input;
36 public float getInterpolation(float input) {
37 return DOMAIN*(input/=DURATION)*input*input + START;
41 public float getInterpolation(float input) {
42 return DOMAIN*((input=input/DURATION-1)*input*input + 1) + START
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
Ease.java 28 public float getInterpolation(float input) {
29 return input;
36 public float getInterpolation(float input) {
37 return DOMAIN*(input/=DURATION)*input*input + START;
41 public float getInterpolation(float input) {
42 return DOMAIN*((input=input/DURATION-1)*input*input + 1) + START
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/
dct_arm.c 16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch)
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
  /external/libvpx/libvpx/vp8/encoder/arm/
dct_arm.c 16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch)
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/
dct_arm.c 16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch)
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
  /external/ceres-solver/include/ceres/internal/
variadic_evaluate.h 52 static bool Call(const Functor& functor, T const *const *input, T* output) {
53 return functor(input[0],
54 input[1],
55 input[2],
56 input[3],
57 input[4],
58 input[5],
59 input[6],
60 input[7],
61 input[8]
    [all...]
  /external/chromium_org/mojo/examples/pepper_container_app/
type_converters.h 19 static PointPtr ConvertFrom(const PP_Point& input) {
21 point->x = input.x;
22 point->y = input.y;
26 static PP_Point ConvertTo(const PointPtr& input) {
27 if (!input)
29 return PP_MakePoint(static_cast<int32_t>(input->x),
30 static_cast<int32_t>(input->y));
37 static SizePtr ConvertFrom(const PP_Size& input) {
39 size->width = input.width;
40 size->height = input.height
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
ntohs.c 12 uint8_t input[2]; local
13 memcpy(input, &networkshort, 2);
15 return ((((uint32_t) input[0]) << 8) |
16 ((uint32_t) input[1]));
ntohl.c 12 uint8_t input[4]; local
13 memcpy(input, &networklong, 4);
15 return ((((uint32_t) input[0]) << 24) |
16 (((uint32_t) input[1]) << 16) |
17 (((uint32_t) input[2]) << 8) |
18 ((uint32_t) input[3]));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
swap_bytes.c 26 const uint16_t* input, /* (i) the sequence to swap */
32 *output++ = (*input >> 8)|(*input << 8);
33 input++;
  /external/compiler-rt/test/asan/TestCases/Helpers/
init-order-pthread-create-extra.cc 1 void *bar(void *input);
  /external/lldb/test/lang/c/inlines/
inlines.h 3 int not_inlined_2 (int input);
4 int not_inlined_1 (int input);
  /external/lldb/test/python_api/frame/inlines/
inlines.h 3 int not_inlined_2 (int input);
4 int not_inlined_1 (int input);
  /frameworks/base/core/java/android/animation/
TimeInterpolator.java 30 * @param input A value between 0 and 1.0 indicating our current point
37 float getInterpolation(float input);
  /external/chromium_org/third_party/WebKit/Source/core/css/
themeChromium.css 33 input:disabled, textarea:disabled {
  /frameworks/base/core/java/android/hardware/input/
InputDeviceIdentifier.aidl 17 package android.hardware.input;
KeyboardLayout.aidl 17 package android.hardware.input;
TouchCalibration.aidl 17 package android.hardware.input;
  /libcore/luni/src/main/java/java/net/
IDN.java 49 * <p>If the transformation fails (because the input is not a valid IDN), an
57 * @param input the Unicode name
61 * @throws IllegalArgumentException if {@code input} does not conform to <a href="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</a>
63 public static String toASCII(String input, int flags) {
64 return NativeIDN.toASCII(input, flags);
68 * Equivalent to {@code toASCII(input, 0)}.
70 * @param input the Unicode name
72 * @throws IllegalArgumentException if {@code input} does not conform to <a href="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</a>
74 public static String toASCII(String input) {
75 return toASCII(input, 0)
    [all...]
  /external/clang/test/Sema/
format-strings-enum.c 19 void test(TestEnum input) {
20 printf("%d", input); // no-warning
23 printf("%lld", input); // expected-warning-re{{format specifies type 'long long' but the argument has underlying type '{{(unsigned)?}} int'}}
30 void testLong(LongEnum input) {
31 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has underlying type}}
34 printf("%lu", input);
  /external/qemu/android/utils/
lineinput.h 21 /* A LineInput is used to read input text, one line at a time,
29 /* Read next line from input. The result is zero-terminated with
38 const char* lineInput_getLine( LineInput* input );
43 const char* lineInput_getLineAndSize( LineInput* input, size_t *pSize );
46 int lineInput_getLineNumber( LineInput* input );
49 int lineInput_isEof( LineInput* input );
55 int lineInput_getError( LineInput* input );
58 void lineInput_free( LineInput* input );

Completed in 1086 milliseconds

1 2 3 4 5 6 7 8 91011>>