Searched refs:more (Results 51 - 75 of 311) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/tests/
H A Dmsgcomm-2573 ${MSGCOMM} --more-than=0 -o mcomm-test25.tmp mcomm-test25.in1 mcomm-test25.in2
H A Dxgettext-csharp-314 // \u escapes with more than one u are invalid.
85 #. \u escapes with more than one u are invalid.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/lib/
H A Dfindbit.S32 2: cmp r2, r1 @ any more?
55 * One or more bits in the LSB of r3 are assumed to be set.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/lib/
H A Dfindbit.S32 2: cmp r2, r1 @ any more?
66 2: cmp r2, r1 @ any more?
98 2: cmp r2, r1 @ any more?
126 2: cmp r2, r1 @ any more?
147 * One or more bits in the LSB of r3 are assumed to be set.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hisax/
H A Dhscx_irq.c86 int more, count; local
98 more = (bcs->mode == L1_MODE_TRANS) ? 1 : 0;
100 more = !0;
111 WriteHSCXCMDR(cs, bcs->hw.hscx.hscx, more ? 0x8 : 0xa);
H A Djade_irq.c76 int more, count; local
88 more = (bcs->mode == L1_MODE_TRANS) ? 1 : 0;
90 more = !0;
101 WriteJADECMDR(cs, bcs->hw.hscx.hscx, jade_HDLC_XCMD, more ? jadeXCMD_XF : (jadeXCMD_XF|jadeXCMD_XME));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m32r/kernel/
H A Dhead.S89 beqz r4, .Lendloop1 ; any more to go?
93 bnez r4, .Lloop1 ; go do some more
97 beqz r4, .Lendloop2 ; any more to go?
102 bnez r4, .Lloop2 ; go do some more
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/dccp/
H A Dccid.h55 int more, unsigned int len);
104 int more, unsigned int len)
107 ccid->ccid_ops->ccid_hc_tx_packet_sent(sk, more, len);
103 ccid_hc_tx_packet_sent(struct ccid *ccid, struct sock *sk, int more, unsigned int len) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netrom/
H A Dnr_in.c32 static int nr_queue_rx_frame(struct sock *sk, struct sk_buff *skb, int more) argument
41 if (more) {
47 if (!more && nr->fraglen > 0) { /* End of fragment */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/wrepld/
H A Dparser.c14 * GNU General Public License for more details.
29 BOOL grow_buffer(struct BUFFER *buffer, int more) argument
33 DEBUG(10,("grow_buffer: size is: %d offet is:%d growing by %d\n", buffer->length, buffer->offset, more));
36 if (more<256)
37 more=256;
39 if (buffer->offset+more >= buffer->length) {
40 temp=(char *)talloc_realloc(mem_ctx, buffer->buffer, sizeof(char)* (buffer->length+more) );
45 buffer->length+=more;
55 static BOOL check_buffer(struct BUFFER *buffer, int more) argument
57 DEBUG(10,("check_buffer: size is: %d offet is:%d growing by %d\n", buffer->length, buffer->offset, more));
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_deflate/
H A Ddeflate.c20 * is preferable to spend more time in matches to allow very fast string
26 * A previous version of this file used a more sophisticated algorithm
28 * time, but has a larger average cost, uses more memory and is patented.
60 need_more, /* block not completed, need more input or more output */
62 finish_started, /* finish started, need only more output at next deflate */
63 finish_done /* finish done, accept no more input or output */
366 * more output space, but possibly with both pending and
384 /* User must not provide more input after the first FINISH: */
614 * necessary to put more guar
731 unsigned more; /* Amount of free space at the end of the window. */ local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/lib/
H A Dev6-memset.S25 * WARNING: Maintaining this is going to be more work than the above version,
176 subq $3, 16, $2 # E : Repeat the loop at least once more?
198 bne $3,loop_b # U : more?
353 subq $3, 16, $2 # E : Repeat the loop at least once more?
375 bne $3,loop # U : more?
540 subq $3, 16, $2 # E : Repeat the loop at least once more?
562 bne $3,loop_w # U : more?
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/rxrpc/
H A Dar-output.c206 * more data to come, otherwise this data will end the transmission phase.
532 bool more; local
550 more = msg->msg_flags & MSG_MORE;
585 if (chunk > len && !more)
665 if (sp->remain <= 0 || (segment == 0 && !more)) {
693 if (len == 0 && !more)
707 rxrpc_queue_packet(call, skb, segment == 0 && !more);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/x25/
H A Dx25_in.c34 static int x25_queue_rx_frame(struct sock *sk, struct sk_buff *skb, int more) argument
39 if (more) {
46 if (!more && x25->fraglen > 0) { /* End of fragment */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/atm/
H A Deni.h106 struct atm_dev *more; /* other ENI devices */ member in struct:eni_dev
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/lib/
H A Dnand_init.S7 ## code copies more data from NAND flash to internal RAM. Obvioulsy this
21 ## can't trust more than the first 256 bytes.
H A Dchecksum.S16 ;; we also do _NOT_ want to compute a checksum over more than the
100 ;; see if we have one odd byte more
H A Dchecksumcopy.S20 ;; we also do _NOT_ want to compute a checksum over more than the
106 ;; see if we have one odd byte more
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/
H A Dip.h219 extern void __ip_select_ident(struct iphdr *iph, struct dst_entry *dst, int more);
230 static inline void ip_select_ident_more(struct iphdr *iph, struct dst_entry *dst, struct sock *sk, int more) argument
235 inet_sk(sk)->id += 1 + more;
239 __ip_select_ident(iph, dst, more);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/x86/
H A Dh264_idct_sse2.asm19 ;* GNU General Public License for more details.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/engines/rsaref/
H A Dbuild.com47 ; should take no more than 8 bytes.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/engines/rsaref/
H A Dbuild.com47 ; should take no more than 8 bytes.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/xtensa/lib/
H A Dstrnlen_user.S6 * this archive for more details.
94 # check two more bytes (bytes 0, 1 of word)
100 # check one more byte (byte 2 of word)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v10/lib/
H A Dchecksum.S16 ;; we also do _NOT_ want to compute a checksum over more than the
112 ;; see if we have one odd byte more
H A Dchecksumcopy.S20 ;; we also do _NOT_ want to compute a checksum over more than the
118 ;; see if we have one odd byte more

Completed in 118 milliseconds

1234567891011>>