HomeSort by relevance Sort by last modified time
    Searched refs:in1 (Results 51 - 75 of 199) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEConvolveMatrixElement.idl 38 readonly attribute SVGAnimatedString in1;
SVGFEBlendElement.h 35 SVGAnimatedString* in1() { return m_in1.get(); } function in class:WebCore::FINAL
SVGFEDiffuseLightingElement.h 41 SVGAnimatedString* in1() { return m_in1.get(); } function in class:WebCore::FINAL
SVGFEDisplacementMapElement.h 39 SVGAnimatedString* in1() { return m_in1.get(); } function in class:WebCore::FINAL
SVGFEDropShadowElement.h 40 SVGAnimatedString* in1() { return m_in1.get(); } function in class:WebCore::FINAL
SVGFEMergeElement.cpp 45 FilterEffect* mergeEffect = filterBuilder->getEffectById(AtomicString(element->in1()->currentValue()->value()));
SVGFEMorphologyElement.h 40 SVGAnimatedString* in1() { return m_in1.get(); } function in class:WebCore::FINAL
SVGFESpecularLightingElement.h 44 SVGAnimatedString* in1() { return m_in1.get(); } function in class:WebCore::FINAL
  /external/libunwind/src/ia64/
sigsetjmp.S 47 cmp.ne p6, p0 = in1, r0
58 st8 [r16] = in1 // sigjmp_buf[JB_MASK_SAVED] = savemask
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
synthesis-dct8.c 92 double in0,in1,in2,in3; local
96 in1 = FLOAT_SCALE(in[1], DCTII_8_SHIFT_IN); OI_ASSERT(VALID_INT32(in1));
105 L01 = (in1 + in6); OI_ASSERT(VALID_INT32(L01));
111 L06 = (in1 - in6); OI_ASSERT(VALID_INT32(L06));
217 OI_INT32 in0,in1,in2,in3; local
222 in1 = SCALE(in[1], DCTII_8_SHIFT_IN);
231 in1 = in[1];
241 L01 = in1 + in6;
247 L06 = in1 - in6
    [all...]
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
x86SP_FFT_CToC_FC32_Fwd_Radix4_ls_sse.c 32 const OMX_F32 *in1 = in0 + 4; local
33 const OMX_F32 *in2 = in1 + 4;
70 VC_LOAD_MATRIX_TRANSPOSE(&v_t0, &v_t1, &v_t2, &v_t3, in0, in1, in2, in3, n);
x86SP_FFT_CToC_FC32_Inv_Radix4_ls_sse.c 32 const OMX_F32 *in1 = in0 + 4; local
33 const OMX_F32 *in2 = in1 + 4;
70 VC_LOAD_MATRIX_TRANSPOSE(&v_t0, &v_t1, &v_t2, &v_t3, in0, in1, in2, in3, n);
x86SP_FFT_CToC_FC32_Fwd_Radix4_ms_sse.c 134 const OMX_F32 *in1 = in0 + set_count; local
135 const OMX_F32 *in2 = in1 + set_count;
148 VC_LOAD_SPLIT(&v_t1, in1, n);
183 const OMX_F32 *in1 = in0 + set_count; local
184 const OMX_F32 *in2 = in1 + set_count;
197 VC_LOAD_SPLIT(&v_t1, in1, n);
x86SP_FFT_CToC_FC32_Inv_Radix4_ms_sse.c 134 const OMX_F32 *in1 = in0 + set_count; local
135 const OMX_F32 *in2 = in1 + set_count;
148 VC_LOAD_SPLIT(&v_t1, in1, n);
183 const OMX_F32 *in1 = in0 + set_count; local
184 const OMX_F32 *in2 = in1 + set_count;
197 VC_LOAD_SPLIT(&v_t1, in1, n);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestMax.rs 25 float in1 = rsGetElementAt_float(gAllocIn1, x);
26 return max(in, in1);
30 float2 in1 = rsGetElementAt_float2(gAllocIn1, x);
31 return max(in, in1);
35 float3 in1 = rsGetElementAt_float3(gAllocIn1, x);
36 return max(in, in1);
40 float4 in1 = rsGetElementAt_float4(gAllocIn1, x);
41 return max(in, in1);
TestMin.rs 25 float in1 = rsGetElementAt_float(gAllocIn1, x);
26 return min(in, in1);
30 float2 in1 = rsGetElementAt_float2(gAllocIn1, x);
31 return min(in, in1);
35 float3 in1 = rsGetElementAt_float3(gAllocIn1, x);
36 return min(in, in1);
40 float4 in1 = rsGetElementAt_float4(gAllocIn1, x);
41 return min(in, 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/chromium_org/third_party/webrtc/common_audio/signal_processing/
ilbc_specific_functions.c 55 void WebRtcSpl_AddVectorsAndShift(int16_t *out, const int16_t *in1,
61 const int16_t *in1ptr = in1;
  /external/chromium_org/third_party/sqlite/src/
mkopcodeh.awk 28 # case OP_aaaa: /* jump, in1, in2, in3, out2-prerelease, out3 */
49 in1[name] = 0
68 }else if(x=="in1"){
69 in1[name] = 1
134 if( in1[name] ) a2 = 4;
149 print "#define OPFLG_IN1 0x0004 /* in1: P1 is an input */"
  /frameworks/rs/
rsCppUtils.h 199 T rsMin(T in1, T in2)
201 if (in1 > in2) {
204 return in1;
208 T rsMax(T in1, T in2) {
209 if (in1 < in2) {
212 return in1;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsCppUtils.h 199 T rsMin(T in1, T in2)
201 if (in1 > in2) {
204 return in1;
208 T rsMax(T in1, T in2) {
209 if (in1 < in2) {
212 return in1;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsCppUtils.h 199 T rsMin(T in1, T in2)
201 if (in1 > in2) {
204 return in1;
208 T rsMax(T in1, T in2) {
209 if (in1 < in2) {
212 return in1;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsCppUtils.h 199 T rsMin(T in1, T in2)
201 if (in1 > in2) {
204 return in1;
208 T rsMax(T in1, T in2) {
209 if (in1 < in2) {
212 return in1;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 205 Intent in1 = new Intent(BluetoothDevicePicker.ACTION_LAUNCH); local
206 in1.setFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
207 in1.putExtra(BluetoothDevicePicker.EXTRA_NEED_AUTH, false);
208 in1.putExtra(BluetoothDevicePicker.EXTRA_FILTER_TYPE,
210 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_PACKAGE,
212 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_CLASS,
215 startActivity(in1);
  /external/chromium_org/google_apis/drive/
test_util.h 129 // void CopyResultCallback1(T1* out1, T1&& in1)
130 // void CopyResultCallback2(T1* out1, T2* out2, T1&& in1, T2&& in2)
181 // Copies the |in1|'s value to |out1|, and |in2|'s to |out2|.
186 typename CopyResultCallbackHelper<T1>::InType in1,
188 *out1 = CopyResultCallbackHelper<T1>::Move(&in1);
192 // Copies the |in1|'s value to |out1|, |in2|'s to |out2|, and |in3|'s to |out3|.
198 typename CopyResultCallbackHelper<T1>::InType in1,
201 *out1 = CopyResultCallbackHelper<T1>::Move(&in1);
218 // Copies the |in1|'s value to |output->out1|, |in2|'s to |output->out2|,
223 typename CopyResultCallbackHelper<T1>::InType in1,
    [all...]

Completed in 2188 milliseconds

1 23 4 5 6 7 8