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

1 23 4 5

  /external/chromium_org/third_party/re2/re2/
bitstate.cc 179 // Push(ip->out1(), p, 0);
182 // ip->out1() via another path, we want to process it then.
184 // ip with arg==1 as a reminder to push ip->out1() later.
192 // Finished ip->out(); try ip->out1().
194 id = ip->out1();
203 // out1 is the match
204 Push(ip->out1(), p, 0);
205 id = ip->out1();
prog.h 89 void InitAlt(uint32 out, uint32 out1);
101 int out1() { DCHECK(opcode() == kInstAlt || opcode() == kInstAltMatch); return out1_; } function in class:re2::Prog::Inst
nfa.cc 242 stk[nstk++] = AddState(ip->out1());
334 return ip->out1();
674 if (ip->out1())
675 q.insert(ip->out1());
  /external/clang/test/Analysis/
dtor.cpp 182 int *out1, *out2, *out3; member in class:DestructorVirtualCalls::A
187 *out1 = get();
221 obj.out1 = &a;
  /external/regex-re2/re2/
bitstate.cc 179 // Push(ip->out1(), p, 0);
182 // ip->out1() via another path, we want to process it then.
184 // ip with arg==1 as a reminder to push ip->out1() later.
192 // Finished ip->out(); try ip->out1().
194 id = ip->out1();
203 // out1 is the match
204 Push(ip->out1(), p, 0);
205 id = ip->out1();
prog.h 89 void InitAlt(uint32 out, uint32 out1);
101 int out1() { DCHECK(opcode() == kInstAlt || opcode() == kInstAltMatch); return out1_; } function in class:re2::Prog::Inst
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/asm/
aes-ia64.S 305 { .mmi; ld4 out1=[in0],8 // s0
341 ld1 out1=[out4],4 };; // s0
356 dep out1=r16,out1,24,8 //;;
362 dep out1=r17,out1,16,8 //;;
368 dep out1=r18,out1,8,8 //;;
380 { .mii; ADDP out1=1,in1
396 { .mmi; st1 [out1]=r18,
    [all...]
  /external/openssl/crypto/aes/asm/
aes-ia64.S 305 { .mmi; ld4 out1=[in0],8 // s0
341 ld1 out1=[out4],4 };; // s0
356 dep out1=r16,out1,24,8 //;;
362 dep out1=r17,out1,16,8 //;;
368 dep out1=r18,out1,8,8 //;;
380 { .mii; ADDP out1=1,in1
396 { .mmi; st1 [out1]=r18,
    [all...]
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
x86SP_SSE_Math.h 279 __m128 *out1,
284 *out1 = temp.imag;
290 OMX_F32 *out1,
304 /* CADD_SUB_X out1, t1, t3 */
305 VC_ADD_SUB_X_STORE_SPLIT(out1, t1, t3, n);
314 OMX_F32 *out1,
328 /* CSUB_ADD_X out1, t1, t3 */
329 VC_SUB_ADD_X_STORE_SPLIT(out1, t1, t3, n);
  /cts/tests/tests/view/src/android/view/animation/cts/
CycleInterpolatorTest.java 197 final float out1 = cycleInterpolator.getInterpolation(0.0f); local
206 final float delta1 = out2 - out1;
214 assertEquals(out1, out3, ALPHA_DELTA);
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
resample.c 313 const int16_t* coef_ptr, int32_t* out1,
353 *out1 = tmp1 + coef * in1[8];
359 const int16_t* coef_ptr, int16_t* out1,
413 *out1 = (int16_t)tmp1;
resample_fractional.c 150 const int16_t *coef_ptr, int32_t *out1,
190 *out1 = tmp1 + coef * in1[8];
  /external/jpeg/
jccolor.c 319 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4)
327 *out1++ = PACK(B1(src0), B0(src1), B3(src1), B2(src2));
366 UINT32* out1 = (UINT32*)outptr1; local
368 copyquads(in, out0, out1, out2, col4);
  /external/webrtc/src/common_audio/signal_processing/
resample.c 313 const WebRtc_Word16* coef_ptr, WebRtc_Word32* out1,
353 *out1 = tmp1 + coef * in1[8];
359 const WebRtc_Word16* coef_ptr, WebRtc_Word16* out1,
413 *out1 = (WebRtc_Word16)tmp1;
resample_fractional.c 150 const WebRtc_Word16 *coef_ptr, WebRtc_Word32 *out1,
190 *out1 = tmp1 + coef * in1[8];
  /external/chromium_org/third_party/re2/re2/testing/
backtrack.cc 173 // Try both possible next states: out is preferred to out1.
176 Visit(ip->out1(), p);
179 return Visit(ip->out1(), p);
  /external/oprofile/module/ia64/
IA64syscallstub.h 97 mov out1 = in0; \
179 mov out1 = in1; \
  /external/regex-re2/re2/testing/
backtrack.cc 173 // Try both possible next states: out is preferred to out1.
176 Visit(ip->out1(), p);
179 return Visit(ip->out1(), p);
  /external/svox/pico/compat/jni/
com_android_tts_compat_SynthProxy.cpp 61 static double out1;// y[n-1] variable
97 out1 = 0.0f;
107 out0 = (m_fa*x0) + (m_fb*x1) + (m_fc*x2) + (m_fd*out1) + (m_fe*out2);
112 out2 = out1;
113 out1 = out0;
  /frameworks/base/core/tests/coretests/src/android/text/
TextUtilsTest.java 295 String out1 = TextUtils.ellipsize(s1, p, i, kind).toString(); local
306 assertEquals("wid " + i + " pass " + j, out1, out2);
314 assertEquals("wid " + i + " pass " + j, out1, trim1);
320 assertTrue("wid " + i + " pass " + j, p.measureText(out1) <= i);
323 assertTrue("wid " + i + " pass " + j, p.measureText(keep1) == p.measureText(out1));
  /external/chromium_org/third_party/libwebp/dsp/
enc_neon.c 340 const int16x4_t out1 = vadd_s16(tmp1, a3_eq_0); local
342 vst1_s16(out + 4, out1);
533 const int16x4_t out1 = vmovn_s32(b1); local
538 vst1_s16(out + 4, out1);
1014 const int16x8_t out1 = Quantize(in, mtx, 8); local
    [all...]
  /external/webp/src/dsp/
enc_neon.c 340 const int16x4_t out1 = vadd_s16(tmp1, a3_eq_0); local
342 vst1_s16(out + 4, out1);
533 const int16x4_t out1 = vmovn_s32(b1); local
538 vst1_s16(out + 4, out1);
1014 const int16x8_t out1 = Quantize(in, mtx, 8); local
    [all...]
  /external/libunwind/tests/
ia64-test-rbs-asm.S 84 mov out1 = in1; \
178 (p6) mov out1 = in2
183 (p7) mov out1 = in1
ia64-dyn-asm.S 28 mov out1 = in1
  /external/qemu/distrib/jpeg-6b/
jccolor.c 412 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4)
420 *out1++ = PACK(B1(src0), B0(src1), B3(src1), B2(src2));
459 UINT32* out1 = (UINT32*)outptr1; local
461 copyquads(in, out0, out1, out2, col4);

Completed in 589 milliseconds

1 23 4 5