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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/
sha1-mips.S 27 sll $6,6
46 sll $8,$8,24
48 sll $30,$30,8
53 sll $25,$1,5 # 0
60 sll $30,$2,30
70 sll $9,$9,24
72 sll $30,$30,8
77 sll $25,$24,5 # 1
84 sll $30,$1,30
94 sll $10,$10,2
    [all...]
sha256-mips.S 30 sll $23,$6,6
56 sll $8,$8,24
58 sll $15,$15,8
65 sll $14,$24,7
69 sll $14,$24,21
73 sll $14,$24,26
81 sll $14,$1,10
85 sll $14,$1,19
89 sll $14,$1,30
108 sll $9,$9,2
    [all...]
  /external/openssl/crypto/sha/asm/
sha1-mips.S 27 sll $6,6
46 sll $8,$8,24
48 sll $30,$30,8
53 sll $25,$1,5 # 0
60 sll $30,$2,30
70 sll $9,$9,24
72 sll $30,$30,8
77 sll $25,$24,5 # 1
84 sll $30,$1,30
94 sll $10,$10,2
    [all...]
sha256-mips.S 30 sll $23,$6,6
56 sll $8,$8,24
58 sll $15,$15,8
65 sll $14,$24,7
69 sll $14,$24,21
73 sll $14,$24,26
81 sll $14,$1,10
85 sll $14,$1,19
89 sll $14,$1,30
108 sll $9,$9,2
    [all...]
  /external/clang/test/CodeGen/
Atomics.c 11 signed long long sll; variable
22 (void) __sync_fetch_and_add (&sll, 1); // CHECK: atomicrmw add i64
31 (void) __sync_fetch_and_sub (&sll, 1); // CHECK: atomicrmw sub i64
40 (void) __sync_fetch_and_or (&sll, 1); // CHECK: atomicrmw or i64
49 (void) __sync_fetch_and_xor (&sll, 1); // CHECK: atomicrmw xor i64
58 (void) __sync_fetch_and_and (&sll, 1); // CHECK: atomicrmw and i64
71 sll = __sync_fetch_and_add (&sll, 11); // CHECK: atomicrmw add
80 sll = __sync_fetch_and_sub (&sll, 11); // CHECK: atomicrmw su
    [all...]
complex-convert.c 11 void foo(signed char sc, unsigned char uc, signed long long sll,
131 csc1 = sll;
161 cuc1 = sll;
193 csll1 = sll;
223 cull1 = sll;
365 csll1 = sll + csc;
380 csll1 = sll + cuc;
395 csll1 = sll + csll;
408 csll1 = sll + cull;
    [all...]
  /bionic/libc/arch-mips/bionic/
ffs.S 68 sll $t0,$a0,4 /* t0 = X * 0x00000010 */
70 sll $t0,$a0,6 /* t0 = X * 0x00000440 */
72 sll $t0,$a0,16 /* t0 = X * 0x04510000 */
  /external/iputils/
rarpd.c 419 struct sockaddr_ll sll; local
420 socklen_t sll_len = sizeof(sll);
426 n = recvfrom(fd, buf, sizeof(buf), MSG_DONTWAIT, (struct sockaddr*)&sll, &sll_len);
434 if (sll.sll_pkttype != PACKET_BROADCAST &&
435 sll.sll_pkttype != PACKET_MULTICAST &&
436 sll.sll_pkttype != PACKET_HOST)
439 if (ifidx && sll.sll_ifindex != ifidx)
455 for (i=0; i<sll.sll_halen; i++) {
457 sprintf(ptr, ":%02x", sll.sll_addr[i]);
460 sprintf(ptr, "%02x", sll.sll_addr[i])
635 struct sockaddr_ll sll; local
647 struct sockaddr_ll sll; local
    [all...]
  /dalvik/vm/compiler/template/mips/
TEMPLATE_SHL_LONG.S 8 sll rRESULT0, rARG0, a2 # rlo<- alo << (shift&31)
12 sll rRESULT1, rARG1, a2 # rhi<- ahi << (shift&31)
TEMPLATE_USHR_LONG.S 11 sll rARG1, 1
12 sll rARG1, rARG0 # ahi<- ahi << (32-(shift&31))
TEMPLATE_SHR_LONG.S 12 sll rARG1, 1
13 sll rARG1, rARG0 # ahi<- ahi << (32-(shift&31))
  /libcore/luni/src/main/native/
libcore_net_RawSocket.cpp 46 sockaddr_ll sll; member in union:sockunion
69 su.sll.sll_family = PF_PACKET;
70 su.sll.sll_protocol = htons(protocolType);
71 su.sll.sll_ifindex = if_nametoindex(ifname.c_str());
128 su.sll.sll_hatype = htons(1); // ARPHRD_ETHER
129 su.sll.sll_halen = mac.size();
130 memcpy(&su.sll.sll_addr, mac.get(), mac.size());
131 su.sll.sll_family = AF_PACKET;
132 su.sll.sll_protocol = htons(protocolType);
133 su.sll.sll_ifindex = if_nametoindex(ifname.c_str())
    [all...]
  /dalvik/vm/mterp/mips/
OP_CONST_4.S 3 sll a1, rINST, 16 # a1 <- Bxxx0000
OP_CONST_HIGH16.S 5 sll a0, a0, 16 # a0 <- BBBB0000
OP_CONST_WIDE.S 6 sll a1, 16 #
10 sll a3, 16
OP_SHL_LONG_2ADDR.S 15 sll v0, a0, a2 # rlo<- alo << (shift&31)
19 sll v1, a1, a2 # rhi<- ahi << (shift&31)
OP_USHR_LONG_2ADDR.S 17 sll a1, 1
18 sll a1, a0 # ahi<- ahi << (32-(shift&31))
  /external/dhcpcd/
lpf.c 74 struct sockaddr_ll sll; member in union:sockunion
87 su.sll.sll_family = PF_PACKET;
88 su.sll.sll_protocol = htons(protocol);
89 if (!(su.sll.sll_ifindex = if_nametoindex(iface->name))) {
137 struct sockaddr_ll sll; member in union:sockunion
143 su.sll.sll_family = AF_PACKET;
144 su.sll.sll_protocol = htons(protocol);
145 if (!(su.sll.sll_ifindex = if_nametoindex(iface->name))) {
149 su.sll.sll_hatype = htons(iface->family);
150 su.sll.sll_halen = iface->hwlen
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
bn-mips.S 633 sll $6,1
640 sll $14,$13
647 sll $4,$25
648 sll $5,$25
666 sll $15,$4,4*4 # bits
687 sll $5,4*4 # bits
689 sll $2,$8,4*4 # bits
699 sll $15,$4,4*4 # bits
1545 sll $25,1
1549 sll $24,
    [all...]
  /external/openssl/crypto/bn/asm/
bn-mips.S 633 sll $6,1
640 sll $14,$13
647 sll $4,$25
648 sll $5,$25
666 sll $15,$4,4*4 # bits
687 sll $5,4*4 # bits
689 sll $2,$8,4*4 # bits
699 sll $15,$4,4*4 # bits
1545 sll $25,1
1549 sll $24,
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/asm/
ghash-alpha.pl 55 sll $nlo,4,$nlo
64 sll $Zhi,60,$t0
79 sll $nlo,4,$nlo
90 sll $Zhi,60,$t0
107 sll $nlo,4,$nlo
111 sll $Zhi,60,$t0
132 sll $Zhi,60,$t0
149 sll $nlo,4,$nlo
152 sll $Zhi,60,$t0
174 sll $Zhi,60,$t
    [all...]
ghash-sparcv9.pl 98 sll $nlo,4,$nlo
107 sll $remi,3,$remi
121 sll $nlo,4,$nlo
125 sll $remi,3,$remi
141 sll $remi,3,$remi
154 sll $nlo,4,$nlo
159 sll $remi,3,$remi
177 sll $remi,3,$remi
198 sll $remi,3,$remi
234 sll $nlo,4,$nl
    [all...]
  /external/openssl/crypto/modes/asm/
ghash-alpha.pl 55 sll $nlo,4,$nlo
64 sll $Zhi,60,$t0
79 sll $nlo,4,$nlo
90 sll $Zhi,60,$t0
107 sll $nlo,4,$nlo
111 sll $Zhi,60,$t0
132 sll $Zhi,60,$t0
149 sll $nlo,4,$nlo
152 sll $Zhi,60,$t0
174 sll $Zhi,60,$t
    [all...]
ghash-sparcv9.pl 98 sll $nlo,4,$nlo
107 sll $remi,3,$remi
121 sll $nlo,4,$nlo
125 sll $remi,3,$remi
141 sll $remi,3,$remi
154 sll $nlo,4,$nlo
159 sll $remi,3,$remi
177 sll $remi,3,$remi
198 sll $remi,3,$remi
234 sll $nlo,4,$nl
    [all...]
  /external/llvm/test/MC/Mips/
micromips-shift-instructions.s 7 # CHECK: sll $4, $3, 7 # encoding: [0x00,0x38,0x83,0x00]
15 sll $4, $3, 7

Completed in 1176 milliseconds

1 2 3 4 5 6 7