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)
SVGFETileElement.h 42 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;
SVGFEMergeNodeElement.h 44 DECLARE_ANIMATED_STRING(In1, in1)
SVGFEOffsetElement.h 43 DECLARE_ANIMATED_STRING(In1, in1)
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLSL_impl.h 25 inline Self GrGLSLExpr<Self>::Mul(T0 in0, T1 in1) {
26 if (in0.isZeros() || in1.isZeros()) {
30 return Self::VectorCast(in1);
32 if (in1.isOnes()) {
35 return Self("(%s * %s)", in0.c_str(), in1.c_str());
40 inline Self GrGLSLExpr<Self>::Add(T0 in0, T1 in1) {
41 if (in1.isZeros()) {
45 return Self::VectorCast(in1);
47 if (in0.isOnes() && in1.isOnes()) {
50 return Self("(%s + %s)", in0.c_str(), in1.c_str())
    [all...]
GrGLSL.h 157 GrGLSLExpr(const char format[], const char in0[], const char in1[])
159 fExpr.appendf(format, in0, in1);
175 * vecN(in0.x * in1.x, ...) if dim(T0) == dim(T1) (component-wise)
176 * vecN(in0.x * in1, ...) if dim(T1) == 1 (vector by scalar)
177 * vecN(in0 * in1.x, ...) if dim(T0) == 1 (scalar by vector)
180 static Self Mul(T0 in0, T1 in1);
184 * vecN(in0.x + in1.x, ...) or vecN(in0.x + in1, ...) or vecN(in0 + in1.x, ...).
187 static Self Add(T0 in0, T1 in1);
    [all...]
  /external/skia/src/gpu/gl/
GrGLSL_impl.h 25 inline Self GrGLSLExpr<Self>::Mul(T0 in0, T1 in1) {
26 if (in0.isZeros() || in1.isZeros()) {
30 return Self::VectorCast(in1);
32 if (in1.isOnes()) {
35 return Self("(%s * %s)", in0.c_str(), in1.c_str());
40 inline Self GrGLSLExpr<Self>::Add(T0 in0, T1 in1) {
41 if (in1.isZeros()) {
45 return Self::VectorCast(in1);
47 if (in0.isOnes() && in1.isOnes()) {
50 return Self("(%s + %s)", in0.c_str(), in1.c_str())
    [all...]
GrGLSL.h 157 GrGLSLExpr(const char format[], const char in0[], const char in1[])
159 fExpr.appendf(format, in0, in1);
175 * vecN(in0.x * in1.x, ...) if dim(T0) == dim(T1) (component-wise)
176 * vecN(in0.x * in1, ...) if dim(T1) == 1 (vector by scalar)
177 * vecN(in0 * in1.x, ...) if dim(T0) == 1 (scalar by vector)
180 static Self Mul(T0 in0, T1 in1);
184 * vecN(in0.x + in1.x, ...) or vecN(in0.x + in1, ...) or vecN(in0 + in1.x, ...).
187 static Self Add(T0 in0, T1 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...]

Completed in 1673 milliseconds

1 2 3 4 5 6