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

1 2 3 4 5 6

  /external/flac/libFLAC/
fixed_intrin_ssse3.c 82 __m128i err0, err1; local
84 err1 = _mm_shuffle_epi32(err0, _MM_SHUFFLE(0,0,0,0)); // e0 e0 e0 e0
86 err1 = _mm_sub_epi32(err1, last_error);
88 err1 = _mm_sub_epi32(err1, last_error);
90 err1 = _mm_sub_epi32(err1, last_error);
92 err1 = _mm_sub_epi32(err1, last_error); // e1 e2 e3 e
173 __m128i err0, err1; local
    [all...]
fixed_intrin_sse2.c 82 __m128i err0, err1, tmp; local
84 err1 = _mm_shuffle_epi32(err0, _MM_SHUFFLE(0,0,0,0)); // e0 e0 e0 e0
86 err1 = _mm_sub_epi32(err1, last_error);
88 err1 = _mm_sub_epi32(err1, last_error);
90 err1 = _mm_sub_epi32(err1, last_error);
92 err1 = _mm_sub_epi32(err1, last_error); // e1 e2 e3 e
179 __m128i err0, err1, tmp; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
encodeopt_msa.c 21 v2i64 err1 = { 0 }; local
28 DPADD_SD2_SD(diff0, diff1, err0, err1);
34 err1 += __msa_splati_d(err1, 1);
36 err += __msa_copy_s_d(err1, 0);
50 v2i64 err0, err1; local
82 DOTP_SW2_SD(diff0, diff1, diff0, diff1, err0, err1);
85 DPADD_SD2_SD(diff0, diff1, err0, err1);
87 err1 += __msa_splati_d(err1, 1)
116 v2i64 err0, err1, err_dup0, err_dup1; local
    [all...]
  /prebuilts/go/darwin-x86/src/internal/poll/
sendfile_bsd.go 30 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
36 if n == 0 && err1 == nil {
39 if err1 == syscall.EAGAIN {
40 if err1 = dstFD.pd.waitWrite(dstFD.isFile); err1 == nil {
44 if err1 != nil {
48 err = err1
sendfile_linux.go 28 n, err1 := syscall.Sendfile(dst, src, nil, n)
33 if n == 0 && err1 == nil {
36 if err1 == syscall.EAGAIN {
37 if err1 = dstFD.pd.waitWrite(dstFD.isFile); err1 == nil {
41 if err1 != nil {
45 err = err1
sendfile_solaris.go 33 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
34 if err1 == syscall.EAGAIN || err1 == syscall.EINTR {
43 if n == 0 && err1 == nil {
46 if err1 == syscall.EAGAIN {
47 if err1 = dstFD.pd.waitWrite(dstFD.isFile); err1 == nil {
51 if err1 == syscall.EINTR {
54 if err1 != nil {
58 err = err1
    [all...]
  /prebuilts/go/linux-x86/src/internal/poll/
sendfile_bsd.go 30 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
36 if n == 0 && err1 == nil {
39 if err1 == syscall.EAGAIN {
40 if err1 = dstFD.pd.waitWrite(dstFD.isFile); err1 == nil {
44 if err1 != nil {
48 err = err1
sendfile_linux.go 28 n, err1 := syscall.Sendfile(dst, src, nil, n)
33 if n == 0 && err1 == nil {
36 if err1 == syscall.EAGAIN {
37 if err1 = dstFD.pd.waitWrite(dstFD.isFile); err1 == nil {
41 if err1 != nil {
45 err = err1
sendfile_solaris.go 33 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
34 if err1 == syscall.EAGAIN || err1 == syscall.EINTR {
43 if n == 0 && err1 == nil {
46 if err1 == syscall.EAGAIN {
47 if err1 = dstFD.pd.waitWrite(dstFD.isFile); err1 == nil {
51 if err1 == syscall.EINTR {
54 if err1 != nil {
58 err = err1
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
exec_bsd.go 44 // declarations require heap allocation (e.g., err1).
47 err1 Errno
70 r1, r2, err1 = RawSyscall(SYS_FORK, 0, 0, 0)
71 if err1 != 0 {
73 return 0, err1
96 _, _, err1 = RawSyscall(SYS_PTRACE, uintptr(PTRACE_TRACEME), 0, 0)
97 if err1 != 0 {
104 _, _, err1 = RawSyscall(SYS_SETSID, 0, 0, 0)
105 if err1 != 0 {
113 _, _, err1 = RawSyscall(SYS_SETPGID, 0, uintptr(sys.Pgid), 0
    [all...]
exec_solaris.go 64 // declarations require heap allocation (e.g., err1).
67 err1 Errno
88 r1, err1 = forkx(0x1) // FORK_NOSIGCHLD
89 if err1 != 0 {
91 return 0, err1
106 _, err1 = setsid()
107 if err1 != 0 {
115 err1 = setpgid(0, uintptr(sys.Pgid))
116 if err1 != 0 {
124 r1, err1 = getpid(
    [all...]
exec_linux.go 69 r1, err1, p, locked := forkAndExecInChild1(argv0, argv, envv, chroot, dir, attr, sys, pipe)
73 if err1 != 0 {
74 return 0, err1
104 func forkAndExecInChild1(argv0 *byte, argv, envv []*byte, chroot, dir *byte, attr *ProcAttr, sys *SysProcAttr, pipe int) (r1 uintptr, err1 Errno, p [2]int, locked bool) {
117 // declarations require heap allocation (e.g., err1).
144 err1 = err.(Errno)
155 r1, err1 = rawVforkSyscall(SYS_CLONE, uintptr(SIGCHLD|CLONE_VFORK|CLONE_VM)|sys.Cloneflags)
157 r1, _, err1 = RawSyscall6(SYS_CLONE, 0, uintptr(SIGCHLD)|sys.Cloneflags, 0, 0, 0, 0)
159 r1, _, err1 = RawSyscall6(SYS_CLONE, uintptr(SIGCHLD)|sys.Cloneflags, 0, 0, 0, 0, 0)
161 if err1 != 0 || r1 != 0
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
exec_bsd.go 44 // declarations require heap allocation (e.g., err1).
47 err1 Errno
70 r1, r2, err1 = RawSyscall(SYS_FORK, 0, 0, 0)
71 if err1 != 0 {
73 return 0, err1
96 _, _, err1 = RawSyscall(SYS_PTRACE, uintptr(PTRACE_TRACEME), 0, 0)
97 if err1 != 0 {
104 _, _, err1 = RawSyscall(SYS_SETSID, 0, 0, 0)
105 if err1 != 0 {
113 _, _, err1 = RawSyscall(SYS_SETPGID, 0, uintptr(sys.Pgid), 0
    [all...]
exec_solaris.go 64 // declarations require heap allocation (e.g., err1).
67 err1 Errno
88 r1, err1 = forkx(0x1) // FORK_NOSIGCHLD
89 if err1 != 0 {
91 return 0, err1
106 _, err1 = setsid()
107 if err1 != 0 {
115 err1 = setpgid(0, uintptr(sys.Pgid))
116 if err1 != 0 {
124 r1, err1 = getpid(
    [all...]
exec_linux.go 69 r1, err1, p, locked := forkAndExecInChild1(argv0, argv, envv, chroot, dir, attr, sys, pipe)
73 if err1 != 0 {
74 return 0, err1
104 func forkAndExecInChild1(argv0 *byte, argv, envv []*byte, chroot, dir *byte, attr *ProcAttr, sys *SysProcAttr, pipe int) (r1 uintptr, err1 Errno, p [2]int, locked bool) {
117 // declarations require heap allocation (e.g., err1).
144 err1 = err.(Errno)
155 r1, err1 = rawVforkSyscall(SYS_CLONE, uintptr(SIGCHLD|CLONE_VFORK|CLONE_VM)|sys.Cloneflags)
157 r1, _, err1 = RawSyscall6(SYS_CLONE, 0, uintptr(SIGCHLD)|sys.Cloneflags, 0, 0, 0, 0)
159 r1, _, err1 = RawSyscall6(SYS_CLONE, uintptr(SIGCHLD)|sys.Cloneflags, 0, 0, 0, 0, 0)
161 if err1 != 0 || r1 != 0
    [all...]
  /external/libvpx/libvpx/vp9/encoder/arm/neon/
vp9_error_neon.c 32 const int32x4_t err1 = vmlal_s16(err0, diff_hi, diff_hi); local
33 const int64x2_t err2 = vaddl_s32(vget_low_s32(err1), vget_high_s32(err1));
  /external/testng/src/main/java/org/testng/log4testng/
Logger.java 492 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
494 PrintStream err2= new PrintStream(err1);
498 Assert.assertEquals(err1.toString(), "");
507 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
509 PrintStream err2= new PrintStream(err1);
514 Assert.assertEquals(err1.toString(), "");
523 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
525 PrintStream err2= new PrintStream(err1);
530 Assert.assertEquals(err1.toString(), "");
539 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
564 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
597 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
618 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
640 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
670 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
692 ByteArrayOutputStream err1= new ByteArrayOutputStream(); local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/mips/msa/
vp9_error_msa.c 22 v2i64 err0, err_dup0, err1, err_dup1; \
31 DOTP_SW2_SD(diff_r, diff_l, diff_r, diff_l, err0, err1); \
39 DPADD_SD2_SD(diff_r, diff_l, err0, err1); \
51 DPADD_SD2_SD(diff_r, diff_l, err0, err1); \
59 DPADD_SD2_SD(diff_r, diff_l, err0, err1); \
73 err_dup1 = __msa_splati_d(err1, 1); \
75 err1 += err_dup1; \
77 err += __msa_copy_s_d(err1, 0); \
  /prebuilts/go/darwin-x86/src/os/
path.go 54 dir, err1 := Lstat(path)
55 if err1 == nil && dir.IsDir() {
106 names, err1 := fd.Readdirnames(100)
108 err1 := RemoveAll(path + string(PathSeparator) + name)
110 err = err1
113 if err1 == io.EOF {
118 err = err1
129 err1 := Remove(path)
130 if err1 == nil || IsNotExist(err1) {
    [all...]
  /prebuilts/go/linux-x86/src/os/
path.go 54 dir, err1 := Lstat(path)
55 if err1 == nil && dir.IsDir() {
106 names, err1 := fd.Readdirnames(100)
108 err1 := RemoveAll(path + string(PathSeparator) + name)
110 err = err1
113 if err1 == io.EOF {
118 err = err1
129 err1 := Remove(path)
130 if err1 == nil || IsNotExist(err1) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
codeop.py 78 err = err1 = err2 = None
88 except SyntaxError, err1:
98 if not code1 and repr(err1) == repr(err2):
99 raise SyntaxError, err1
  /external/python/cpython2/Lib/
codeop.py 78 err = err1 = err2 = None
88 except SyntaxError, err1:
98 if not code1 and repr(err1) == repr(err2):
99 raise SyntaxError, err1
  /external/python/cpython3/Lib/
codeop.py 78 err = err1 = err2 = None
89 err1 = e
98 if not code1 and repr(err1) == repr(err2):
99 raise err1
  /prebuilts/gdb/darwin-x86/lib/python2.7/
codeop.py 78 err = err1 = err2 = None
88 except SyntaxError, err1:
98 if not code1 and repr(err1) == repr(err2):
99 raise SyntaxError, err1
  /prebuilts/gdb/linux-x86/lib/python2.7/
codeop.py 78 err = err1 = err2 = None
88 except SyntaxError, err1:
98 if not code1 and repr(err1) == repr(err2):
99 raise SyntaxError, err1

Completed in 772 milliseconds

1 2 3 4 5 6