Home
last modified time | relevance | path

Searched refs:carry (Results 1 – 104 of 104) sorted by relevance

/linux-4.1.27/net/ipv6/
Dip6_checksum.c13 int carry; in csum_ipv6_magic() local
19 carry = (sum < (__force u32)saddr->s6_addr32[0]); in csum_ipv6_magic()
20 sum += carry; in csum_ipv6_magic()
23 carry = (sum < (__force u32)saddr->s6_addr32[1]); in csum_ipv6_magic()
24 sum += carry; in csum_ipv6_magic()
27 carry = (sum < (__force u32)saddr->s6_addr32[2]); in csum_ipv6_magic()
28 sum += carry; in csum_ipv6_magic()
31 carry = (sum < (__force u32)saddr->s6_addr32[3]); in csum_ipv6_magic()
32 sum += carry; in csum_ipv6_magic()
35 carry = (sum < (__force u32)daddr->s6_addr32[0]); in csum_ipv6_magic()
[all …]
/linux-4.1.27/arch/alpha/lib/
Dcsum_partial_copy.c106 unsigned long carry = 0; in csum_partial_cfu_aligned() local
112 checksum += carry; in csum_partial_cfu_aligned()
116 carry = checksum < word; in csum_partial_cfu_aligned()
121 checksum += carry; in csum_partial_cfu_aligned()
129 carry = checksum < word; in csum_partial_cfu_aligned()
131 checksum += carry; in csum_partial_cfu_aligned()
149 unsigned long word, carry; in csum_partial_cfu_dest_aligned() local
154 carry = 0; in csum_partial_cfu_dest_aligned()
163 checksum += carry; in csum_partial_cfu_dest_aligned()
169 carry = checksum < word; in csum_partial_cfu_dest_aligned()
[all …]
Dchecksum.c112 unsigned long carry = 0; in do_csum() local
117 result += carry; in do_csum()
119 carry = (w > result); in do_csum()
121 result += carry; in do_csum()
Dev6-csum_ipv6_magic.S144 addq $1,$3,$0 # E : Final carry
/linux-4.1.27/net/bluetooth/
Decc.c154 u64 carry = 0; in vli_lshift() local
160 result[i] = (temp << shift) | carry; in vli_lshift()
161 carry = temp >> (64 - shift); in vli_lshift()
164 return carry; in vli_lshift()
171 u64 carry = 0; in vli_rshift1() local
177 *vli = (temp >> 1) | carry; in vli_rshift1()
178 carry = temp << 63; in vli_rshift1()
186 u64 carry = 0; in vli_add() local
192 sum = left[i] + right[i] + carry; in vli_add()
194 carry = (sum < left[i]); in vli_add()
[all …]
/linux-4.1.27/arch/mips/include/asm/
Dchecksum.h136 int carry; in ip_fast_csum() local
140 carry = (csum < word[1]); in ip_fast_csum()
141 csum += carry; in ip_fast_csum()
144 carry = (csum < word[2]); in ip_fast_csum()
145 csum += carry; in ip_fast_csum()
148 carry = (csum < word[3]); in ip_fast_csum()
149 csum += carry; in ip_fast_csum()
154 carry = (csum < *word); in ip_fast_csum()
155 csum += carry; in ip_fast_csum()
/linux-4.1.27/arch/ia64/lib/
Dcsum_partial_copy.c65 unsigned long carry = 0; in do_csum_c() local
70 result += carry; in do_csum_c()
72 carry = (w > result); in do_csum_c()
74 result += carry; in do_csum_c()
/linux-4.1.27/arch/metag/lib/
Dchecksum.c74 unsigned int carry = 0; in do_csum() local
78 result += carry; in do_csum()
80 carry = (w > result); in do_csum()
82 result += carry; in do_csum()
/linux-4.1.27/arch/frv/lib/
Dchecksum.c69 unsigned long carry = 0; in do_csum() local
74 result += carry; in do_csum()
76 carry = (w > result); in do_csum()
78 result += carry; in do_csum()
/linux-4.1.27/arch/sparc/lib/
Dudivdi3.S38 addx %i0,%i0,%i0 ! so this cannot give carry
50 ! Got carry from n. Subtract next step to cancel this carry.
76 addx %o4,%o4,%o4 ! so this cannot give carry
88 ! Got carry from n. Subtract next step to cancel this carry.
102 addx %i0,%i0,%i0 ! so this cannot give carry
114 ! Got carry from n. Subtract next step to cancel this carry.
181 addx %o4,%o4,%o4 ! so this cannot give carry
193 ! Got carry from n. Subtract next step to cancel this carry.
Ddivdi3.S61 addx %i0,%i0,%i0 ! so this cannot give carry
73 ! Got carry from n. Subtract next step to cancel this carry.
97 addx %g3,%g3,%g3 ! so this cannot give carry
109 ! Got carry from n. Subtract next step to cancel this carry.
121 addx %i0,%i0,%i0 ! so this cannot give carry
133 ! Got carry from n. Subtract next step to cancel this carry.
196 addx %o2,%o2,%o2 ! so this cannot give carry
208 ! Got carry from n. Subtract next step to cancel this carry.
Dchecksum_32.S48 addx %g0, %o2, %o2 ! add in final carry
55 addx %g0, %o2, %o2 ! add in final carry
72 addx %g0, %o2, %o0 ! add final carry into retval
113 andcc %o1, 0x70, %g1 ! clears carry flag too
118 addx %g0, %o2, %o2 ! sink in final carry
122 andcc %o1, 0x70, %g1 ! clears carry flag too
137 addx %g0, %o2, %o2 ! fetch final carry
355 addx %g0, %g7, %g7 ! add in last carry bit
362 andcc %g1, 0xf, %o3 ! get low bits of length (clears carry btw)
370 add %o1, %o2, %o1 ! advance dest ptr (carry is clear btw)
[all …]
/linux-4.1.27/lib/
Dchecksum.c75 unsigned int carry = 0; in do_csum() local
79 result += carry; in do_csum()
81 carry = (w > result); in do_csum()
83 result += carry; in do_csum()
/linux-4.1.27/arch/blackfin/include/asm/
Dchecksum.h20 unsigned int carry; in __csum_tcpudp_nofold() local
34 : "=d" (sum), "=&d" (carry) in __csum_tcpudp_nofold()
/linux-4.1.27/arch/m68k/math-emu/
Dmulti_arith.h84 int carry; in fp_addmant() local
93 asm volatile ("addx.l %0,%0" : "=d" (carry) : "0" (0)); in fp_addmant()
95 return carry; in fp_addmant()
156 char carry; \
161 asm ("subx.l %2,%1; scs %0" : "=d" (carry), "=d" (dest.m32[0]) \
163 carry; \
/linux-4.1.27/net/mac80211/
Daes_cmac.c28 int i, carry; in gf_mulx() local
30 carry = pad[0] & 0x80; in gf_mulx()
34 if (carry) in gf_mulx()
/linux-4.1.27/crypto/
Dwp512.c1012 u32 b, carry; in wp512_update() local
1019 for (i = 31, carry = 0; i >= 0 && (carry != 0 || value != 0ULL); i--) { in wp512_update()
1020 carry += bitLength[i] + ((u32)value & 0xff); in wp512_update()
1021 bitLength[i] = (u8)carry; in wp512_update()
1022 carry >>= 8; in wp512_update()
/linux-4.1.27/arch/arm/mach-omap2/
Dclkt_dpll.c145 int r = 0, carry = 0; in _dpll_test_mult() local
149 carry = 1; in _dpll_test_mult()
150 *m = (*m / DPLL_SCALE_FACTOR) + carry; in _dpll_test_mult()
/linux-4.1.27/arch/powerpc/boot/
Ddevtree.c167 int i, carry = 0; in add_reg() local
170 u64 tmp = (u64)reg[i] + add[i] + carry; in add_reg()
171 carry = tmp >> 32; in add_reg()
175 return !carry; in add_reg()
/linux-4.1.27/arch/cris/arch-v10/drivers/
DKconfig106 Specify the pin of the PB port to carry the DTR signal for serial
115 Specify the pin of the PB port to carry the RI signal for serial
124 Specify the pin of the PB port to carry the DSR signal for serial
133 Specify the pin of the PB port to carry the CD signal for serial
194 Specify the pin of the PB port to carry the DTR signal for serial
203 Specify the pin of the PB port to carry the RI signal for serial
212 Specify the pin of the PB port to carry the DSR signal for serial
221 Specify the pin of the PB port to carry the CD signal for serial
261 Specify the pin of the PA port to carry the DTR signal for serial
270 Specify the pin of the PA port to carry the RI signal for serial
[all …]
/linux-4.1.27/arch/cris/arch-v32/lib/
Dchecksum.S43 ;; test $acr without trashing carry.
50 ;; fold the last carry into r13
Dchecksumcopy.S47 ;; test $acr, without trashing carry.
53 ;; fold the last carry into r13
/linux-4.1.27/arch/cris/arch-v10/lib/
Dchecksum.S59 ;; fold the carry into the checksum, to avoid having to loop the carry
Dchecksumcopy.S65 ;; fold the carry into the checksum, to avoid having to loop the carry
/linux-4.1.27/arch/m68k/fpsp040/
Dbinstr.S33 | will be collected by the carry.
35 | A5. Add using the carry the 64-bit quantities in d2:d3 and d4:d5
95 | A4. Multiply d4:d5 by 2; add carry out to d1.
Dsrem_mod.S206 clrl %d6 | ...D6 := carry <- 0
223 tstl %d6 | ...test carry bit
226 |..At this point carry = 0, R = (D1,D2), Y = (D4,D5)
244 clrl %d6 | ...clear carry
254 roxll #1,%d1 | ...hi(R) = 2hi(R) + carry
Dround.S213 bccs xcc_clr |test for carry out
214 addql #1,LOCAL_HI(%a0) |propagate carry
233 addql #1,LOCAL_HI(%a0) |propagate carry
Ddecbin.S462 asrl #1,%d0 |shift next bit into carry
Dbindec.S649 lsrl #1,%d0 |shift next bit into carry
/linux-4.1.27/arch/c6x/lib/
Dcsum_64plus.S255 ; unsigned int carry = 0;
260 ; result += carry;
262 ; carry = (w > result);
264 ; result += carry;
/linux-4.1.27/drivers/net/wireless/p54/
Dp54usb.c501 u8 carry = 0; in p54u_upload_firmware_3887() local
535 if (carry) { in p54u_upload_firmware_3887()
536 *tmp++ = carry; in p54u_upload_firmware_3887()
537 carry = 0; in p54u_upload_firmware_3887()
544 carry = '^'; in p54u_upload_firmware_3887()
548 carry = ']'; in p54u_upload_firmware_3887()
/linux-4.1.27/arch/arm/lib/
Ddiv64.S105 @ divisor for comparisons, considering the carry-out bit as well.
117 @ The top part of remainder became zero. If carry is set
Dcsumpartial.S74 .Ldone: adc r0, sum, #0 @ collect up the last carry
/linux-4.1.27/arch/m68k/ifpsp060/src/
Dilsp.S400 bcc ldd2nd # no carry, do next quotient digit
466 addx.w %d4, %d3 # add any carry to m*m product
468 addx.w %d4, %d3 # add any carry to m*m product
564 addx.l %d4,%d3 # [4] + carry
566 addx.l %d4,%d3 # [4] + carry
690 addx.l %d4,%d3 # [4] + carry
692 addx.l %d4,%d3 # [4] + carry
Dfplsp.S9529 clr.l %d6 # D6 := carry <- 0
9546 tst.l %d6 # test carry bit
9549 #..At this point carry = 0, R = (D1,D2), Y = (D4,D5)
9567 clr.l %d6 # clear carry
9577 roxl.l &1,%d1 # hi(R) = 2hi(R) + carry
/linux-4.1.27/arch/x86/crypto/
Dghash-clmulni-intel_asm.S68 # carry-less multiplication
Dsalsa20-i586-asm_32.S883 # in9 += 0 + carry
Daesni-intel_avx-x86_64.S1112 # the accumulated carry-less multiplications
2394 # accumulated carry-less multiplications
Daesni-intel_asm.S1142 # TMP6:XMMDst holds the result of the accumulated carry-less multiplications
/linux-4.1.27/net/x25/
DKconfig10 entry point can carry several logical point-to-point connections
/linux-4.1.27/arch/m68k/lib/
Dudivsi3.S148 jcs L2 | if no carry,
/linux-4.1.27/drivers/video/fbdev/
Dpxa168fb.h274 #define CFG_CARRY(carry) ((carry) << 23) argument
/linux-4.1.27/arch/arm/crypto/
Dsha1-armv4-large.S294 cmn sp,#0 @ [+3], clear carry to denote 20_39
376 ARM( teq r14,sp ) @ preserve carry
378 THUMB( teq r14,r11 ) @ preserve carry
475 cmp sp,#0 @ set carry to denote 60_79
Daes-ce-core.S346 rev ip, ip @ ... to handle the carry
Daesbs-core.S_shipped1078 sub sp, #0x10 @ scratch space to carry over the IV
1334 sub sp, sp, #0x10 @ scratch space to carry over the ctr
/linux-4.1.27/net/atm/
DKconfig62 ATM PVCs can carry ethernet PDUs according to RFC2684 (formerly 1483)
/linux-4.1.27/Documentation/filesystems/
Dlocks.txt17 been totally removed, so that we don't need to carry this baggage
Dromfs.txt42 from a nearby server, so you don't want to carry two disks for this
Dcoda.txt1430 limit the frequency of upcalls. Upcalls carry a price since a process
/linux-4.1.27/Documentation/power/
Dnotifiers.txt4 There are some operations that subsystems or drivers may want to carry out
Dbasic-pm-debugging.txt110 you can carry out a binary search according to the rules:
Dpci.txt712 In addition to that the prepare() callback may carry out some operations
730 However, in some rare case it is convenient to carry out these operations in
752 suspend_noirq() can carry out operations that would cause race conditions to
820 be invoked while resume_noirq() is running, so this callback can carry out
Druntime_pm.txt149 0, then the PM core will attempt to carry out a runtime suspend of the device,
285 - indicates that the PM core should attempt to carry out an autosuspend
567 notifier is used by some subsystems to carry out operations affecting the
Ddevices.txt48 device is on, it may be necessary to carry out some bus-specific
/linux-4.1.27/Documentation/scsi/
Dosd.txt74 struct osd_request's is used to iteratively encode an OSD command and carry
152 A block device request can carry bidirectional payload by means of associating
DLICENSE.qla4xxx106 a) You must cause the modified files to carry prominent notices
DLICENSE.qla2xxx107 a) You must cause the modified files to carry prominent notices
/linux-4.1.27/arch/arm/nwfpe/
Dsoftfloat-macros340 any carry out is lost. The result is broken into two 64-bit pieces which
360 modulo 2^192, so any carry out is lost. The result is broken into three
399 2^128, so any borrow out (carry out) is lost. The result is broken into two
418 Subtraction is modulo 2^192, so any borrow out (carry out) is lost. The
/linux-4.1.27/drivers/media/platform/soc_camera/
Dmx2_camera.c1070 int carry = init_carry; in mx2_emmaprp_resize() local
1077 carry += out_pos_inc; in mx2_emmaprp_resize()
1080 carry -= in_pos_inc; in mx2_emmaprp_resize()
1102 } while (carry != init_carry); in mx2_emmaprp_resize()
/linux-4.1.27/tools/build/Documentation/
DBuild.txt12 carry a sources list for multiple build objects.
/linux-4.1.27/Documentation/input/
Drotary-encoder.txt81 steps the encoder has and can carry information about externally inverted
Djoystick-api.txt66 generated the event. Note that they carry separate numeration (that
/linux-4.1.27/Documentation/mn10300/
DABI.txt99 Certain ordinary registers may carry special usage for the compiler:
/linux-4.1.27/net/l2tp/
DKconfig20 tunnels. One IP tunnel may carry thousands of individual PPP
/linux-4.1.27/arch/alpha/math-emu/
Dqrnnd.S148 cmpult n1,n0,tmp # tmp := carry from addq
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/
DOverview.txt45 machines that carry the device. For example S3C2410 is contained
218 Newer kernels carry GPIOLIB, and support is being moved towards
/linux-4.1.27/arch/um/
DKconfig.net69 which can carry any Ethernet frame (and hence even non-IP packets),
70 the slip transport can only carry IP packets.
/linux-4.1.27/drivers/net/ethernet/sfc/
Dptp.c1739 u32 diff, carry; in __efx_rx_skb_attach_timestamp() local
1753 carry = channel->sync_timestamp_minor + diff > MINOR_TICKS_PER_SECOND ? in __efx_rx_skb_attach_timestamp()
1761 pkt_timestamp_major = channel->sync_timestamp_major + carry; in __efx_rx_skb_attach_timestamp()
1767 pkt_timestamp_major = channel->sync_timestamp_major - 1 + carry; in __efx_rx_skb_attach_timestamp()
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Drockchip,pinctrl.txt30 as some SoCs carry parts of the iomux controller registers there.
/linux-4.1.27/Documentation/phy/
Dsamsung-usb2.txt24 phy. They carry out the common work that has to be done on all version
/linux-4.1.27/block/partitions/
DKconfig166 This is mainly used to carry data from a UnixWare box to your
233 above. This is mainly used to carry data from a SPARC under SunOS to
/linux-4.1.27/Documentation/parisc/
Dregisters64 C/B (carry/borrow bits) used by C code
/linux-4.1.27/Documentation/driver-model/
Doverview.txt23 model includes a set of common attributes which all busses carry, and a set
/linux-4.1.27/Documentation/networking/
Dieee802154.txt131 [RFC4944] was specified to carry IPv6 datagrams over such constrained links,
Dl2tp.txt45 handled by userspace. L2TP control frames carry messages between L2TP
313 traffic. With L2TPv3, the session can also carry ethernet frames
Dxfrm_sync.txt123 XFRM_MSG_GETAE does not carry any TLVs.
DLICENSE.qlge105 a) You must cause the modified files to carry prominent notices
DLICENSE.qlcnic105 a) You must cause the modified files to carry prominent notices
Dcan.txt697 The opcode defines the operation for the broadcast manager to carry out,
/linux-4.1.27/net/ax25/
DKconfig27 carry other protocols such as tcp/ip. To use it, you need a device
/linux-4.1.27/drivers/video/fbdev/mmp/hw/
Dmmp_ctrl.h514 #define CFG_CARRY(carry) ((carry)<<23) argument
/linux-4.1.27/arch/cris/arch-v32/kernel/
Dhead.S27 ;; NOTE: R8 and R9 carry information from the decompressor (if the
/linux-4.1.27/Documentation/w1/
Dw1.netlink139 w1_netlink_msg.status field will carry positive error value
/linux-4.1.27/drivers/net/ethernet/tundra/
Dtsi108_eth.c372 tsi108_stat_carry_one(int carry, int carry_bit, int carry_shift, in tsi108_stat_carry_one() argument
375 if (carry & carry_bit) in tsi108_stat_carry_one()
/linux-4.1.27/Documentation/fmc/
Didentifiers.txt4 The FMC standard requires every compliant mezzanine to carry
/linux-4.1.27/Documentation/cpu-freq/
Dcpu-drivers.txt129 policy->related_cpus and will reset policy->cpus to carry only online cpus.
/linux-4.1.27/Documentation/usb/
Dpersist.txt88 fails to carry out a normal resume.
Dpower-management.txt261 responsibility. In the meantime you can always carry out the
394 decrement the usage counter; they do not attempt to carry out
408 carry out the operation automatically when the autosuspend idle-delay
/linux-4.1.27/Documentation/security/
Dcredentials.txt202 These are only carried by tasks. They carry and cache security tokens
208 Keyrings are a special type of key. They carry sets of other keys and can
/linux-4.1.27/Documentation/RCU/
Dtorture.txt149 carry out RCU priority-inversion testing.
/linux-4.1.27/Documentation/
Dmedia-framework.txt171 - ALSA, VBI and video nodes that carry the same media stream
Dmemory-barriers.txt1431 carry out its proof assuming that the current CPU is the only one
/linux-4.1.27/drivers/net/wan/
DKconfig323 carry several logical point-to-point connections to other computers
/linux-4.1.27/firmware/keyspan_pda/
Dkeyspan_pda.S396 lcall set_baud ; index in r3, carry set if error
Dxircom_pgs.S434 lcall set_baud ; index in r3, carry set if error
/linux-4.1.27/
DREADME150 as expected. If you want to carry your existing configuration to a
DCOPYING111 a) You must cause the modified files to carry prominent notices
/linux-4.1.27/tools/usb/usbip/
DCOPYING95 a) You must cause the modified files to carry prominent notices
/linux-4.1.27/drivers/staging/rtl8192e/
Dlicense98 * a) You must cause the modified files to carry prominent notices stating
/linux-4.1.27/drivers/staging/rtl8192u/
Dcopying95 a) You must cause the modified files to carry prominent notices
/linux-4.1.27/Documentation/cdrom/
Dcdrom-standard.tex473 Some discs carry a `Media Catalog Number' (MCN), also called
476 the few discs that carry such a number on the disc don't even use the
/linux-4.1.27/drivers/media/dvb-frontends/drx39xyj/
Ddrxj.c11602 u32 carry = 0; in drx_u_code_compute_crc() local
11608 if (carry != 0) in drx_u_code_compute_crc()
11610 carry = crc_word & 0x80000000UL; in drx_u_code_compute_crc()
/linux-4.1.27/drivers/rtc/
DKconfig851 virtually the same and carry the same model number. Both chips
/linux-4.1.27/drivers/staging/speakup/
Dspkguide.txt1319 copies in covers that carry, clearly and legibly, all these Cover