HomeSort by relevance Sort by last modified time
    Searched refs:in1 (Results 26 - 50 of 92) sorted by null

12 3 4

  /external/webkit/Source/WebCore/svg/
SVGFEColorMatrixElement.h 48 DECLARE_ANIMATED_STRING(In1, in1)
SVGFECompositeElement.h 48 DECLARE_ANIMATED_STRING(In1, in1)
SVGFEDisplacementMapElement.h 49 DECLARE_ANIMATED_STRING(In1, in1)
SVGFEGaussianBlurElement.h 51 DECLARE_ANIMATED_STRING(In1, in1)
SVGFEMorphologyElement.h 52 DECLARE_ANIMATED_STRING(In1, in1)
SVGFECompositeElement.idl 42 readonly attribute SVGAnimatedString in1;
SVGFETileElement.cpp 35 DEFINE_ANIMATED_STRING(SVGFETileElement, SVGNames::inAttr, In1, in1)
88 FilterEffect* input1 = filterBuilder->getEffectById(in1());
SVGFEDiffuseLightingElement.h 54 DECLARE_ANIMATED_STRING(In1, in1)
SVGFESpecularLightingElement.h 53 DECLARE_ANIMATED_STRING(In1, in1)
SVGFEComponentTransferElement.cpp 38 DEFINE_ANIMATED_STRING(SVGFEComponentTransferElement, SVGNames::inAttr, In1, in1)
83 FilterEffect* input1 = filterBuilder->getEffectById(in1());
SVGFEConvolveMatrixElement.idl 40 readonly attribute SVGAnimatedString in1;
SVGFEBlendElement.cpp 34 DEFINE_ANIMATED_STRING(SVGFEBlendElement, SVGNames::inAttr, In1, in1)
130 FilterEffect* input1 = filterBuilder->getEffectById(in1());
SVGFEGaussianBlurElement.cpp 35 DEFINE_ANIMATED_STRING(SVGFEGaussianBlurElement, SVGNames::inAttr, In1, in1)
127 FilterEffect* input1 = filterBuilder->getEffectById(in1());
SVGFEOffsetElement.cpp 34 DEFINE_ANIMATED_STRING(SVGFEOffsetElement, SVGNames::inAttr, In1, in1)
108 FilterEffect* input1 = filterBuilder->getEffectById(in1());
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
dowhile-007.js 33 function DoWhileObject( out1, out2, out3, in1 ) {
37 this.breakIn = in1;
  /external/mesa3d/src/pixelflinger2/
llvm_helper.h 32 static Value * minIntScalar(IRBuilder<> &builder, Value * in1, Value * in2)
34 Value * cmp = builder.CreateICmpSLT(in1, in2);
35 return builder.CreateSelect(cmp, in1, in2);
38 static Value * maxIntScalar(IRBuilder<> &builder, Value * in1, Value * in2)
40 Value * cmp = builder.CreateICmpSGT(in1, in2);
41 return builder.CreateSelect(cmp, in1, in2);
104 static Value * intVecMax(IRBuilder<> & builder, Value * in1, Value * in2)
106 std::vector<Value *> vec1 = extractVector(builder, in1);
115 static Value * intVecMin(IRBuilder<> & builder, Value * in1, Value * in2)
117 std::vector<Value *> vec1 = extractVector(builder, in1);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 145 Intent in1 = new Intent(BluetoothDevicePicker.ACTION_LAUNCH); local
146 in1.setFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
147 in1.putExtra(BluetoothDevicePicker.EXTRA_NEED_AUTH, false);
148 in1.putExtra(BluetoothDevicePicker.EXTRA_FILTER_TYPE,
150 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_PACKAGE,
152 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_CLASS,
155 this.startActivity(in1);
  /external/llvm/examples/BrainF/
BrainF.h 36 /// This is the main method. It parses BrainF from in1
42 Module *parse(std::istream *in1, int mem, CompileFlags cf,
  /external/quake/quake/src/QW/client/
mathlib.h 61 void R_ConcatRotations (float in1[3][3], float in2[3][3], float out[3][3]);
62 void R_ConcatTransforms (float in1[3][4], float in2[3][4], float out[3][4]);
  /external/quake/quake/src/WinQuake/
mathlib.h 61 void R_ConcatRotations (float in1[3][3], float in2[3][3], float out[3][3]);
62 void R_ConcatTransforms (float in1[3][4], float in2[3][4], float out[3][4]);
  /external/webrtc/src/common_audio/signal_processing/
ilbc_specific_functions.c 74 void WebRtcSpl_AddVectorsAndShift(WebRtc_Word16 *out, G_CONST WebRtc_Word16 *in1,
80 G_CONST WebRtc_Word16 *in1ptr = in1;
vector_scaling_operations.c 132 void WebRtcSpl_ScaleAndAddVectors(G_CONST WebRtc_Word16 *in1, WebRtc_Word16 gain1, int shift1,
136 // Performs vector operation: out = (gain1*in1)>>shift1 + (gain2*in2)>>shift2
142 in1ptr = in1;
  /gdk/samples/quake/jni/
mathlib.h 61 void R_ConcatRotations (float in1[3][3], float in2[3][3], float out[3][3]);
62 void R_ConcatTransforms (float in1[3][4], float in2[3][4], float out[3][4]);
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
dbstabsmooth.cpp 24 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out);
25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
307 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out)
310 if(in1 == NULL || in2 == NULL || out == NULL)
314 out->par[i] = in1->par[i] + in2->par[i];
319 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out)
322 if(in1 == NULL || out == NULL)
326 out->par[i] = in1->par[i] * factor;
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbstabsmooth.cpp 24 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out);
25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
307 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out)
310 if(in1 == NULL || in2 == NULL || out == NULL)
314 out->par[i] = in1->par[i] + in2->par[i];
319 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out)
322 if(in1 == NULL || out == NULL)
326 out->par[i] = in1->par[i] * factor;

Completed in 304 milliseconds

12 3 4