HomeSort by relevance Sort by last modified time
    Searched refs:e1 (Results 276 - 300 of 2080) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/syscall/
zsyscall_plan9_386.go 19 r0, _, e1 := Syscall(SYS_FD2PATH, uintptr(fd), uintptr(_p0), uintptr(len(buf)))
21 err = e1
29 r0, _, e1 := Syscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)
31 err = e1
45 r0, _, e1 := Syscall(SYS_AWAIT, uintptr(_p0), uintptr(len(s)), 0)
48 err = e1
61 r0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)
65 err = e1
78 r0, _, e1 := Syscall(SYS_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
82 err = e1
    [all...]
zsyscall_plan9_amd64.go 19 r0, _, e1 := Syscall(SYS_FD2PATH, uintptr(fd), uintptr(_p0), uintptr(len(buf)))
21 err = e1
29 r0, _, e1 := Syscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)
31 err = e1
45 r0, _, e1 := Syscall(SYS_AWAIT, uintptr(_p0), uintptr(len(s)), 0)
48 err = e1
61 r0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)
65 err = e1
78 r0, _, e1 := Syscall(SYS_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
82 err = e1
    [all...]
zsyscall_plan9_arm.go 19 r0, _, e1 := Syscall(SYS_FD2PATH, uintptr(fd), uintptr(_p0), uintptr(len(buf)))
21 err = e1
29 r0, _, e1 := Syscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)
31 err = e1
45 r0, _, e1 := Syscall(SYS_AWAIT, uintptr(_p0), uintptr(len(s)), 0)
48 err = e1
61 r0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)
65 err = e1
78 r0, _, e1 := Syscall(SYS_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
82 err = e1
    [all...]
exec_solaris_test.go 23 r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&libc_Getpgid)), 1, uintptr(pid), 0, 0, 0, 0, 0)
25 if e1 != 0 {
26 err = e1
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
load.d 8 0: 17 e1 ff ff M3.L = 0xffff;.*
9 4: 1a e1 fe ff B2.L = 0xfffe;.*
10 8: 0e e1 00 00 SP.L = 0x0;.*
11 c: 0f e1 dc fe FP.L = 0xfedc;.*
12 10: 40 e1 02 00 R0.H = 0x2;.*
13 14: 4d e1 20 00 P5.H = 0x20;.*
14 18: 52 e1 04 f2 I2.H = 0xf204;.*
15 1c: 59 e1 40 00 B1.H = 0x40;.*
16 20: 5c e1 ff ff L0.H = 0xffff;.*
17 24: 45 e1 00 00 R5.H = 0x0;.
    [all...]
  /external/fio/crc/
sha256.c 39 #define e1(x) (ror32(x, 6) ^ ror32(x,11) ^ ror32(x,25)) macro
86 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0];
88 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1];
90 t1 = f + e1(c) + Ch(c,d,e) + 0xb5c0fbcf + W[ 2];
92 t1 = e + e1(b) + Ch(b,c,d) + 0xe9b5dba5 + W[ 3];
94 t1 = d + e1(a) + Ch(a,b,c) + 0x3956c25b + W[ 4];
96 t1 = c + e1(h) + Ch(h,a,b) + 0x59f111f1 + W[ 5];
98 t1 = b + e1(g) + Ch(g,h,a) + 0x923f82a4 + W[ 6];
100 t1 = a + e1(f) + Ch(f,g,h) + 0xab1c5ed5 + W[ 7];
103 t1 = h + e1(e) + Ch(e,f,g) + 0xd807aa98 + W[ 8]
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP224R1FieldElement.java 197 private static void RM(int[] nc, int[] d0, int[] e0, int[] d1, int[] e1, int[] f1, int[] t)
199 SecP224R1Field.multiply(e1, e0, t);
205 SecP224R1Field.multiply(e1, d0, e1);
206 SecP224R1Field.add(e1, t, e1);
207 SecP224R1Field.square(e1, f1);
211 private static void RP(int[] nc, int[] d1, int[] e1, int[] f1, int[] t)
221 Nat224.copy(e1, e0);
226 RS(d1, e1, f1, t)
248 int[] e1 = Nat224.create(); local
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p1-0x.cpp 19 enum E : T { e1, e2 };
  /external/clang/test/SemaCXX/
ms-const-member-expr.cpp 13 constexpr int e1 = s->E; variable
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListAddAllTester.java 59 = MinimalCollection.of(samples.e0, samples.e1, samples.e0, samples.e1);
62 expectAdded(samples.e0, samples.e1, samples.e0, samples.e1);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cr16/
beq0_test.d 12 4: e1 0c beq0b r1,\*\+0x1e <main\+0x1e>:s
15 a: e1 0e beq0w r1,\*\+0x1e <main\+0x1e>:s
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic4x/
float.s 6 ldf 0e2.7e1, f0
8 ldf 0e-2.7e1, f0
10 ldf -0e1.0, f0
19 ldf -2.7e1, f0
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SampleElements.java 35 public final E e1; field in class:SampleElements
40 public SampleElements(E e0, E e1, E e2, E e3, E e4) {
42 this.e1 = e1;
54 return Arrays.asList(e0, e1, e2, e3, e4);
96 Helpers.mapEntry(keys.e1, values.e1),
  /toolchain/binutils/binutils-2.25/libiberty/
partition.c 78 struct partition_elem *e1; local
99 e1 = &(elements[elem1]);
113 old_next = e1->next;
114 e1->next = e2->next;
126 int e1 = * (const int *) elem1; local
128 if (e1 < e2)
130 else if (e1 > e2)
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSetTest.java 48 @Override protected Set<String> of(String e1, String e2) {
49 return ImmutableSet.of(e1, e2);
52 @Override protected Set<String> of(String e1, String e2, String e3) {
53 return ImmutableSet.of(e1, e2, e3);
57 String e1, String e2, String e3, String e4) {
58 return ImmutableSet.of(e1, e2, e3, e4);
62 String e1, String e2, String e3, String e4, String e5) {
63 return ImmutableSet.of(e1, e2, e3, e4, e5);
66 @Override protected Set<String> of(String e1, String e2, String e3,
68 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest)
    [all...]
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/
zsyscall_windows.go 70 r1, _, e1 := syscall.Syscall(procGetComputerNameExW.Addr(), 3, uintptr(nameformat), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(n)))
72 if e1 != 0 {
73 err = errnoErr(e1)
82 r1, _, e1 := syscall.Syscall(procMoveFileExW.Addr(), 3, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(to)), uintptr(flags))
84 if e1 != 0 {
85 err = errnoErr(e1)
94 r0, _, e1 := syscall.Syscall(procGetModuleFileNameW.Addr(), 3, uintptr(module), uintptr(unsafe.Pointer(fn)), uintptr(len))
97 if e1 != 0 {
98 err = errnoErr(e1)
119 r0, _, e1 := syscall.Syscall6(procMultiByteToWideChar.Addr(), 6, uintptr(codePage), uintptr(dwFlags), uintpt (…)
    [all...]
  /prebuilts/go/linux-x86/src/internal/syscall/windows/
zsyscall_windows.go 70 r1, _, e1 := syscall.Syscall(procGetComputerNameExW.Addr(), 3, uintptr(nameformat), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(n)))
72 if e1 != 0 {
73 err = errnoErr(e1)
82 r1, _, e1 := syscall.Syscall(procMoveFileExW.Addr(), 3, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(to)), uintptr(flags))
84 if e1 != 0 {
85 err = errnoErr(e1)
94 r0, _, e1 := syscall.Syscall(procGetModuleFileNameW.Addr(), 3, uintptr(module), uintptr(unsafe.Pointer(fn)), uintptr(len))
97 if e1 != 0 {
98 err = errnoErr(e1)
119 r0, _, e1 := syscall.Syscall6(procMultiByteToWideChar.Addr(), 6, uintptr(codePage), uintptr(dwFlags), uintpt (…)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
BiMapPutTester.java 38 K k1 = samples.e1.getKey();
57 V v1 = samples.e1.getValue();
70 getMap().put(samples.e1.getKey(), samples.e1.getValue());
71 expectAdded(samples.e0, samples.e1);
79 K k1 = samples.e1.getKey();
93 K k1 = samples.e1.getKey();
94 V v1 = samples.e1.getValue();
97 expectAdded(samples.e0, samples.e1);
MultimapKeysTester.java 47 Helpers.mapEntry(sampleKeys().e0, sampleValues().e1),
48 Helpers.mapEntry(sampleKeys().e1, sampleValues().e0));
51 assertEquals(1, keys.count(sampleKeys().e1));
53 assertThat(keys).has().allOf(sampleKeys().e0, sampleKeys().e1);
56 Multisets.immutableEntry(sampleKeys().e1, 1));
69 Helpers.mapEntry((K) null, sampleValues().e1),
70 Helpers.mapEntry(sampleKeys().e1, sampleValues().e0));
73 assertEquals(1, keys.count(sampleKeys().e1));
75 assertThat(keys).has().allOf(null, sampleKeys().e1);
78 Multisets.immutableEntry(sampleKeys().e1, 1))
    [all...]
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_unfilled.h 37 GLuint e0, GLuint e1, GLuint e2 )
45 v[1] = (VERTEX *)GET_VERTEX(e1);
64 /* ef[e0], ef[e1], ef[e2]); */
69 if (ef[e1]) POINT( v[1] );
77 if (ef[e1]) LINE( v[1], v[2] );
81 if (ef[e1]) LINE( v[1], v[2] );
100 GLuint e0, GLuint e1,
109 v[1] = (VERTEX *)GET_VERTEX(e1);
137 if (ef[e1]) POINT( v[1] );
144 if (ef[e1]) LINE( v[1], v[2] )
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GestureRecognizer.java 35 boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY);
89 MotionEvent e1, MotionEvent e2, float dx, float dy) {
91 dx, dy, e2.getX() - e1.getX(), e2.getY() - e1.getY());
95 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
97 return mListener.onFling(e1, e2, velocityX, velocityY);
  /prebuilts/go/darwin-x86/src/syscall/
exec_solaris_test.go 23 r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&libc_Getpgid)), 1, uintptr(pid), 0, 0, 0, 0, 0)
25 if e1 != 0 {
26 err = e1
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/
vle-simple-1.d 13 2: e1 03 se_ble 8 <target4>
22 8: e1 ff se_ble 6 <target3>
27 e: e1 01 se_ble 10 <target6>
vsx.d 19 20: (f1 12 e1 07|07 e1 12 f1) xsadddp vs40,vs50,vs60
20 24: (f0 92 e1 5e|5e e1 92 f0) xscmpodp cr1,vs50,vs60
21 28: (f0 92 e1 1e|1e e1 92 f0) xscmpudp cr1,vs50,vs60
25 38: (f1 00 e1 63|63 e1 00 f1) xscvdpsxws vs40,vs60
27 40: (f1 00 e1 23|23 e1 00 f1) xscvdpuxws vs40,vs6
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
ClientSocketHandler.java 38 } catch (IOException e1) {
39 e1.printStackTrace();

Completed in 706 milliseconds

<<11121314151617181920>>