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

1 2 3 4 5 6

  /external/clang/test/CodeGen/
mult-alt-generic.c 43 register int in1 = 1; local
45 asm("foo %1,%0" : "=r" (out0) : "<r" (in1));
47 asm("foo %1,%0" : "=r" (out0) : "r<" (in1));
54 register int in1 = 1; local
56 asm("foo %1,%0" : "=r" (out0) : ">r" (in1));
58 asm("foo %1,%0" : "=r" (out0) : "r>" (in1));
65 register int in1 = 1; local
67 asm("foo %1,%0" : "=r" (out0) : "r" (in1));
113 register int in1 = 1; local
115 asm("foo %1,%0" : "=r" (out0) : "g" (in1));
126 register int in1 = 1; local
176 register int in1 = 1; local
187 register int in1 = 1; local
198 register int in1 = 1; local
246 register int in1 = 1; local
259 register int in1 = 1; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEMergeNodeElement.idl 27 readonly attribute SVGAnimatedString in1;
SVGFEComponentTransferElement.idl 27 readonly attribute SVGAnimatedString in1;
SVGFETileElement.idl 27 readonly attribute SVGAnimatedString in1;
SVGFEOffsetElement.idl 27 readonly attribute SVGAnimatedString in1;
SVGFESpecularLightingElement.idl 27 readonly attribute SVGAnimatedString in1;
SVGFEColorMatrixElement.idl 36 readonly attribute SVGAnimatedString in1;
SVGFEDiffuseLightingElement.idl 27 readonly attribute SVGAnimatedString in1;
SVGFEGaussianBlurElement.idl 27 readonly attribute SVGAnimatedString in1;
SVGFEComponentTransferElement.h 42 DECLARE_ANIMATED_STRING(In1, in1)
SVGFEMergeNodeElement.h 43 DECLARE_ANIMATED_STRING(In1, in1)
SVGFEBlendElement.idl 37 readonly attribute SVGAnimatedString in1;
SVGFEDisplacementMapElement.idl 36 readonly attribute SVGAnimatedString in1;
SVGFEDropShadowElement.idl 21 readonly attribute SVGAnimatedString in1;
SVGFEMorphologyElement.idl 34 readonly attribute SVGAnimatedString in1;
SVGFEOffsetElement.h 43 DECLARE_ANIMATED_STRING(In1, in1)
SVGFETileElement.h 42 DECLARE_ANIMATED_STRING(In1, in1)
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLSL_impl.h 31 const char* in1,
39 bool has1 = NULL != in1 && '\0' != *in1;
58 outAppend->appendf("%s(%s)", GrGLSLFloatVectorTypeString(N), in1);
70 outAppend->appendf("%s((%s) * (%s))", GrGLSLFloatVectorTypeString(N), in0, in1);
78 const char* in1,
86 bool has1 = NULL != in1 && '\0' != *in1;
105 outAppend->appendf("%s(%s)", GrGLSLFloatVectorTypeString(N), in1);
109 in1,
    [all...]
  /external/skia/src/gpu/gl/
GrGLSL_impl.h 31 const char* in1,
39 bool has1 = NULL != in1 && '\0' != *in1;
58 outAppend->appendf("%s(%s)", GrGLSLFloatVectorTypeString(N), in1);
70 outAppend->appendf("%s((%s) * (%s))", GrGLSLFloatVectorTypeString(N), in0, in1);
78 const char* in1,
86 bool has1 = NULL != in1 && '\0' != *in1;
105 outAppend->appendf("%s(%s)", GrGLSLFloatVectorTypeString(N), in1);
109 in1,
    [all...]
  /cts/suite/audio_quality/test/
SignalProcessingInterfaceTest.cpp 58 android::sp<Buffer> in1(new Buffer(8, 8, false));
59 char* data1 = in1->getData();
60 for (size_t i = 0; i < in1->getSize(); i++) {
65 void* inputs[4] = { &in0, &in1, &in2, &in3 };
85 ASSERT_TRUE(*(in1.get()) == *(out1.get()));
98 TaskCase::Value in1((int64_t)100);
99 void* inputs[2] = { &in0, &in1 };
107 ASSERT_TRUE(out0.getInt64() == (in0.getInt64() + in1.getInt64()));
123 TaskCase::Value in1((int64_t)100);
124 void* inputs[2] = { &in0, &in1 };
    [all...]
  /cts/tests/src/android/renderscript/cts/
verify.rs 32 static bool verify_float4(rs_allocation in1, rs_allocation in2)
34 uint32_t w = rsAllocationGetDimX(in1);
35 uint32_t h = rsAllocationGetDimY(in1);
38 float4 pref = rsGetElementAt_float4(in1, x, y);
54 static bool verify_float3(rs_allocation in1, rs_allocation in2)
56 uint32_t w = rsAllocationGetDimX(in1);
57 uint32_t h = rsAllocationGetDimY(in1);
60 float3 pref = rsGetElementAt_float3(in1, x, y);
75 static bool verify_float2(rs_allocation in1, rs_allocation in2)
77 uint32_t w = rsAllocationGetDimX(in1);
    [all...]
  /external/chromium_org/ipc/
ipc_sync_message_unittest.cc 42 void On_1_1(int in1, bool* out1) {
43 DCHECK_EQ(1, in1);
47 void On_1_2(bool in1, bool* out1, int* out2) {
48 DCHECK(!in1);
53 void On_1_3(int in1, std::string* out1, int* out2, bool* out3) {
54 DCHECK_EQ(3, in1);
60 void On_2_1(int in1, bool in2, bool* out1) {
61 DCHECK_EQ(1, in1);
66 void On_2_2(bool in1, int in2, bool* out1, int* out2) {
67 DCHECK(!in1);
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
resample.c 312 static void WebRtcSpl_DotProdIntToInt(const WebRtc_Word32* in1, const WebRtc_Word32* in2,
321 tmp1 += coef * in1[0];
325 tmp1 += coef * in1[1];
329 tmp1 += coef * in1[2];
333 tmp1 += coef * in1[3];
337 tmp1 += coef * in1[4];
341 tmp1 += coef * in1[5];
345 tmp1 += coef * in1[6];
349 tmp1 += coef * in1[7];
353 *out1 = tmp1 + coef * in1[8]
    [all...]
resample_fractional.c 149 static void WebRtcSpl_ResampDotProduct(const WebRtc_Word32 *in1, const WebRtc_Word32 *in2,
158 tmp1 += coef * in1[0];
162 tmp1 += coef * in1[1];
166 tmp1 += coef * in1[2];
170 tmp1 += coef * in1[3];
174 tmp1 += coef * in1[4];
178 tmp1 += coef * in1[5];
182 tmp1 += coef * in1[6];
186 tmp1 += coef * in1[7];
190 *out1 = tmp1 + coef * in1[8]
    [all...]
  /external/libffi/src/ia64/
unix.S 60 mov r8 = in1
127 st8 [in1] = r8
133 st8 [in1] = r8
139 st8 [in1] = r8
145 st8 [in1] = r8
151 st8 [in1] = r8
157 st8 [in1] = r8
161 st8 [in1] = r8
165 stfs [in1] = f8
169 stfd [in1] = f
    [all...]

Completed in 298 milliseconds

1 2 3 4 5 6