/linux-4.1.27/net/ipv6/ |
D | ip6_checksum.c | 13 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/ |
D | csum_partial_copy.c | 106 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 …]
|
D | checksum.c | 112 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()
|
D | ev6-csum_ipv6_magic.S | 144 addq $1,$3,$0 # E : Final carry
|
/linux-4.1.27/net/bluetooth/ |
D | ecc.c | 154 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/ |
D | checksum.h | 136 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/ |
D | csum_partial_copy.c | 65 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/ |
D | checksum.c | 74 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/ |
D | checksum.c | 69 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/ |
D | udivdi3.S | 38 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.
|
D | divdi3.S | 61 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.
|
D | checksum_32.S | 48 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/ |
D | checksum.c | 75 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/ |
D | checksum.h | 20 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/ |
D | multi_arith.h | 84 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/ |
D | aes_cmac.c | 28 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/ |
D | wp512.c | 1012 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/ |
D | clkt_dpll.c | 145 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/ |
D | devtree.c | 167 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/ |
D | Kconfig | 106 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/ |
D | checksum.S | 43 ;; test $acr without trashing carry. 50 ;; fold the last carry into r13
|
D | checksumcopy.S | 47 ;; test $acr, without trashing carry. 53 ;; fold the last carry into r13
|
/linux-4.1.27/arch/cris/arch-v10/lib/ |
D | checksum.S | 59 ;; fold the carry into the checksum, to avoid having to loop the carry
|
D | checksumcopy.S | 65 ;; fold the carry into the checksum, to avoid having to loop the carry
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | binstr.S | 33 | 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.
|
D | srem_mod.S | 206 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
|
D | round.S | 213 bccs xcc_clr |test for carry out 214 addql #1,LOCAL_HI(%a0) |propagate carry 233 addql #1,LOCAL_HI(%a0) |propagate carry
|
D | decbin.S | 462 asrl #1,%d0 |shift next bit into carry
|
D | bindec.S | 649 lsrl #1,%d0 |shift next bit into carry
|
/linux-4.1.27/arch/c6x/lib/ |
D | csum_64plus.S | 255 ; unsigned int carry = 0; 260 ; result += carry; 262 ; carry = (w > result); 264 ; result += carry;
|
/linux-4.1.27/drivers/net/wireless/p54/ |
D | p54usb.c | 501 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/ |
D | div64.S | 105 @ divisor for comparisons, considering the carry-out bit as well. 117 @ The top part of remainder became zero. If carry is set
|
D | csumpartial.S | 74 .Ldone: adc r0, sum, #0 @ collect up the last carry
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | ilsp.S | 400 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
|
D | fplsp.S | 9529 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/ |
D | ghash-clmulni-intel_asm.S | 68 # carry-less multiplication
|
D | salsa20-i586-asm_32.S | 883 # in9 += 0 + carry
|
D | aesni-intel_avx-x86_64.S | 1112 # the accumulated carry-less multiplications 2394 # accumulated carry-less multiplications
|
D | aesni-intel_asm.S | 1142 # TMP6:XMMDst holds the result of the accumulated carry-less multiplications
|
/linux-4.1.27/net/x25/ |
D | Kconfig | 10 entry point can carry several logical point-to-point connections
|
/linux-4.1.27/arch/m68k/lib/ |
D | udivsi3.S | 148 jcs L2 | if no carry,
|
/linux-4.1.27/drivers/video/fbdev/ |
D | pxa168fb.h | 274 #define CFG_CARRY(carry) ((carry) << 23) argument
|
/linux-4.1.27/arch/arm/crypto/ |
D | sha1-armv4-large.S | 294 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
|
D | aes-ce-core.S | 346 rev ip, ip @ ... to handle the carry
|
D | aesbs-core.S_shipped | 1078 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/ |
D | Kconfig | 62 ATM PVCs can carry ethernet PDUs according to RFC2684 (formerly 1483)
|
/linux-4.1.27/Documentation/filesystems/ |
D | locks.txt | 17 been totally removed, so that we don't need to carry this baggage
|
D | romfs.txt | 42 from a nearby server, so you don't want to carry two disks for this
|
D | coda.txt | 1430 limit the frequency of upcalls. Upcalls carry a price since a process
|
/linux-4.1.27/Documentation/power/ |
D | notifiers.txt | 4 There are some operations that subsystems or drivers may want to carry out
|
D | basic-pm-debugging.txt | 110 you can carry out a binary search according to the rules:
|
D | pci.txt | 712 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
|
D | runtime_pm.txt | 149 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
|
D | devices.txt | 48 device is on, it may be necessary to carry out some bus-specific
|
/linux-4.1.27/Documentation/scsi/ |
D | osd.txt | 74 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
|
D | LICENSE.qla4xxx | 106 a) You must cause the modified files to carry prominent notices
|
D | LICENSE.qla2xxx | 107 a) You must cause the modified files to carry prominent notices
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | softfloat-macros | 340 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/ |
D | mx2_camera.c | 1070 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/ |
D | Build.txt | 12 carry a sources list for multiple build objects.
|
/linux-4.1.27/Documentation/input/ |
D | rotary-encoder.txt | 81 steps the encoder has and can carry information about externally inverted
|
D | joystick-api.txt | 66 generated the event. Note that they carry separate numeration (that
|
/linux-4.1.27/Documentation/mn10300/ |
D | ABI.txt | 99 Certain ordinary registers may carry special usage for the compiler:
|
/linux-4.1.27/net/l2tp/ |
D | Kconfig | 20 tunnels. One IP tunnel may carry thousands of individual PPP
|
/linux-4.1.27/arch/alpha/math-emu/ |
D | qrnnd.S | 148 cmpult n1,n0,tmp # tmp := carry from addq
|
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/ |
D | Overview.txt | 45 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/ |
D | Kconfig.net | 69 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/ |
D | ptp.c | 1739 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/ |
D | rockchip,pinctrl.txt | 30 as some SoCs carry parts of the iomux controller registers there.
|
/linux-4.1.27/Documentation/phy/ |
D | samsung-usb2.txt | 24 phy. They carry out the common work that has to be done on all version
|
/linux-4.1.27/block/partitions/ |
D | Kconfig | 166 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/ |
D | registers | 64 C/B (carry/borrow bits) used by C code
|
/linux-4.1.27/Documentation/driver-model/ |
D | overview.txt | 23 model includes a set of common attributes which all busses carry, and a set
|
/linux-4.1.27/Documentation/networking/ |
D | ieee802154.txt | 131 [RFC4944] was specified to carry IPv6 datagrams over such constrained links,
|
D | l2tp.txt | 45 handled by userspace. L2TP control frames carry messages between L2TP 313 traffic. With L2TPv3, the session can also carry ethernet frames
|
D | xfrm_sync.txt | 123 XFRM_MSG_GETAE does not carry any TLVs.
|
D | LICENSE.qlge | 105 a) You must cause the modified files to carry prominent notices
|
D | LICENSE.qlcnic | 105 a) You must cause the modified files to carry prominent notices
|
D | can.txt | 697 The opcode defines the operation for the broadcast manager to carry out,
|
/linux-4.1.27/net/ax25/ |
D | Kconfig | 27 carry other protocols such as tcp/ip. To use it, you need a device
|
/linux-4.1.27/drivers/video/fbdev/mmp/hw/ |
D | mmp_ctrl.h | 514 #define CFG_CARRY(carry) ((carry)<<23) argument
|
/linux-4.1.27/arch/cris/arch-v32/kernel/ |
D | head.S | 27 ;; NOTE: R8 and R9 carry information from the decompressor (if the
|
/linux-4.1.27/Documentation/w1/ |
D | w1.netlink | 139 w1_netlink_msg.status field will carry positive error value
|
/linux-4.1.27/drivers/net/ethernet/tundra/ |
D | tsi108_eth.c | 372 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/ |
D | identifiers.txt | 4 The FMC standard requires every compliant mezzanine to carry
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | cpu-drivers.txt | 129 policy->related_cpus and will reset policy->cpus to carry only online cpus.
|
/linux-4.1.27/Documentation/usb/ |
D | persist.txt | 88 fails to carry out a normal resume.
|
D | power-management.txt | 261 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/ |
D | credentials.txt | 202 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/ |
D | torture.txt | 149 carry out RCU priority-inversion testing.
|
/linux-4.1.27/Documentation/ |
D | media-framework.txt | 171 - ALSA, VBI and video nodes that carry the same media stream
|
D | memory-barriers.txt | 1431 carry out its proof assuming that the current CPU is the only one
|
/linux-4.1.27/drivers/net/wan/ |
D | Kconfig | 323 carry several logical point-to-point connections to other computers
|
/linux-4.1.27/firmware/keyspan_pda/ |
D | keyspan_pda.S | 396 lcall set_baud ; index in r3, carry set if error
|
D | xircom_pgs.S | 434 lcall set_baud ; index in r3, carry set if error
|
/linux-4.1.27/ |
D | README | 150 as expected. If you want to carry your existing configuration to a
|
D | COPYING | 111 a) You must cause the modified files to carry prominent notices
|
/linux-4.1.27/tools/usb/usbip/ |
D | COPYING | 95 a) You must cause the modified files to carry prominent notices
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
D | license | 98 * a) You must cause the modified files to carry prominent notices stating
|
/linux-4.1.27/drivers/staging/rtl8192u/ |
D | copying | 95 a) You must cause the modified files to carry prominent notices
|
/linux-4.1.27/Documentation/cdrom/ |
D | cdrom-standard.tex | 473 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/ |
D | drxj.c | 11602 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/ |
D | Kconfig | 851 virtually the same and carry the same model number. Both chips
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 1319 copies in covers that carry, clearly and legibly, all these Cover
|