Searched refs:inc (Results 101 - 125 of 214) sorted by relevance

123456789

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hardware/eicon/
H A Dkst_ifc.h165 diva_incoming_call_statistics_t inc; member in struct:_diva_ifc_statistics
H A Dmaintidi.c1530 &pLib->InterfaceStat.inc.Calls;
1535 &pLib->InterfaceStat.inc.Connected;
1540 &pLib->InterfaceStat.inc.User_Busy;
1545 &pLib->InterfaceStat.inc.Call_Rejected;
1550 &pLib->InterfaceStat.inc.Wrong_Number;
1555 &pLib->InterfaceStat.inc.Incompatible_Dst;
1560 &pLib->InterfaceStat.inc.Out_of_Order;
1565 &pLib->InterfaceStat.inc.Ignored;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m32r/boot/compressed/
H A Dhead.S105 addi r2, #-4 ; account for pre-inc store
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv6/
H A Dndisc.c691 int inc; local
740 inc = ipv6_addr_is_multicast(daddr);
793 inc != 0 &&
822 if (inc)
832 !inc || lladdr || !dev->addr_len);
840 1, (ifp != NULL && inc), inc);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/udf/
H A Dinode.c1698 kernel_lb_addr eloc, uint32_t elen, int inc)
1815 etype = udf_write_aext(inode, epos, eloc, elen, inc);
1828 udf_update_tag(epos->bh->b_data, epos->offset + (inc ? 0 : adsize));
1838 kernel_lb_addr eloc, uint32_t elen, int inc)
1884 if (inc)
1890 kernel_lb_addr *eloc, uint32_t *elen, int inc)
1894 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
1912 kernel_lb_addr *eloc, uint32_t *elen, int inc)
1939 if (!(sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc)))
1952 if (!(lad = udf_get_filelongad(ptr, alen, &epos->offset, inc)))
1697 udf_add_aext(struct inode *inode, struct extent_position *epos, kernel_lb_addr eloc, uint32_t elen, int inc) argument
1837 udf_write_aext(struct inode *inode, struct extent_position *epos, kernel_lb_addr eloc, uint32_t elen, int inc) argument
1889 udf_next_aext(struct inode *inode, struct extent_position *epos, kernel_lb_addr *eloc, uint32_t *elen, int inc) argument
1911 udf_current_aext(struct inode *inode, struct extent_position *epos, kernel_lb_addr *eloc, uint32_t *elen, int inc) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pcmcia/
H A Dcistpl.c165 u_int inc = 1, card_offset, flags; local
170 inc++;
183 for ( ; len > 0; len--, buf++, sys += inc) {
229 u_int inc = 1, card_offset, flags; local
234 inc++;
246 for ( ; len > 0; len--, buf++, sys += inc) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A DMakefile.m32183 INCLUDES += -I"$(LDAP_SDK)/inc"
199 # Makefile.inc provides the CSOURCES and HHEADERS defines
200 include Makefile.inc
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A DMakefile.Watcom109 # In order to process Makefile.inc wmake must be called with -u switch!
113 !include Makefile.inc
H A DMakefile.netware118 -include $(OBJDIR)/version.inc
256 # INCLUDES += -I$(AXTLS_PATH)/inc
289 # INCLUDES += -I$(NDK_LDAP)/$(LIBARCH_L)/inc
307 #-include $(NDKBASE)/nlmconv/ncpfs.inc
313 # Makefile.inc provides the CSOURCES and HHEADERS defines
314 include Makefile.inc
326 prebuild: $(OBJDIR) $(OBJDIR)/version.inc curl_config.h
332 $(OBJDIR)/version.inc: $(CURL_INC)/curl/curlver.h $(OBJDIR)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/lib/
H A Dchecksum.S73 inc %esi
190 inc %esi
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/misc/
H A Dthinkpad_acpi.c2732 int cmos_cmd, inc, i; local
2738 inc = value > current_value ? 1 : -1;
2739 for (i = current_value; i != value; i += inc) {
2742 if (!acpi_ec_write(brightness_offset, i + inc))
2824 int cmos_cmd, inc, i; local
2855 inc = new_level > level ? 1 : -1;
2861 for (i = level; i != new_level; i += inc)
2863 !acpi_ec_write(volume_offset, i + inc))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/core/
H A Ddev.c2876 * @inc: modifier
2880 * the device reverts back to normal filtering operation. A negative inc
2883 void dev_set_promiscuity(struct net_device *dev, int inc) argument
2887 if ((dev->promiscuity += inc) == 0)
2908 * @inc: modifier
2913 * filtering operation. A negative @inc value is used to drop the counter
2917 void dev_set_allmulti(struct net_device *dev, int inc) argument
2922 if ((dev->allmulti += inc) == 0)
2994 int inc = (flags & IFF_PROMISC) ? +1 : -1; local
2996 dev_set_promiscuity(dev, inc);
3004 int inc = (flags & IFF_ALLMULTI) ? +1 : -1; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/mthca/
H A Dmthca_memfree.c322 int inc = MTHCA_TABLE_CHUNK_SIZE / table->obj_size; local
325 for (i = start; i <= end; i += inc) {
335 i -= inc;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Daac.c1382 int bottom, top, order, start, end, size, inc; local
1402 inc = -1; start = end - 1;
1404 inc = 1;
1409 for (m = 0; m < size; m++, start += inc)
1411 coef[start] -= coef[start - i*inc] * lpc[i-1];
H A Dadpcm.c798 ADPCMChannelStatus *left, ADPCMChannelStatus *right, int inc)
823 out += inc;
826 if (inc==2) { /* stereo */
848 out += inc;
851 if (inc==2) { /* stereo */
797 xa_decode(short *out, const unsigned char *in, ADPCMChannelStatus *left, ADPCMChannelStatus *right, int inc) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/ipvs/
H A Dip_vs_ctl.c1102 if (svc->inc) {
1104 ip_vs_app_inc_put(svc->inc);
1212 /* Unbind app inc */
1213 if (svc->inc) {
1214 ip_vs_app_inc_put(svc->inc);
1215 svc->inc = NULL;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/misc/sisusbvga/
H A Dsisusb.c1692 sisusb_check_rbc(struct sisusb_usb_data *sisusb, int *iret, u32 inc, int testn) argument
1701 j += inc;
1707 j += inc;
1719 u32 inc; local
1724 inc = 1 << (rtype[idx][2] +
1728 ret |= sisusb_check_rbc(sisusb, &i2ret, inc, 2);
1733 inc = 1 << (rtype[idx][2] + bw / 64 + 2);
1734 ret |= sisusb_check_rbc(sisusb, &i2ret, inc, 4);
1738 inc = 1 << (10 + bw / 64);
1739 ret |= sisusb_check_rbc(sisusb, &i2ret, inc,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/unit/
H A DMakefile.in42 $(srcdir)/Makefile.inc
368 EXTRA_DIST = Makefile.inc
394 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/Makefile.inc $(am__configure_deps)
H A DMakefile42 $(srcdir)/Makefile.inc
368 EXTRA_DIST = Makefile.inc
394 $(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(srcdir)/Makefile.inc $(am__configure_deps)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/xmon/
H A Dxmon.c1800 int cmd, inc, i, nslash; local
1842 inc = size;
1851 inc = size;
1856 inc = 0;
1873 inc = size;
1944 adrs += inc;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dcpu.c118 * 3 bytes for estimate of how long the follwing "inc var" instruction is
265 "nop\n\t" /* SIGILL jump lands here if "inc" is 9 bytes */
271 "nop\n\t" /* SIGILL jump lands here if "inc" is 3 bytes (expected) */
273 "nop" /* SIGILL jump lands here if "inc" is 1 byte */
317 inc sse
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/ttusb-budget/
H A Ddvb-ttusb-budget.c247 int inc; local
262 inc = 2;
269 inc = 1;
280 i += inc;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dist/brew/
H A Dbdbread.mak60 AEEINCPATH = $(BREW_HOME)\inc
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masmx86/
H A Dgvmat32.asm168 inc edx
472 inc esi
476 inc esi
480 inc esi
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/core/
H A Dmulticast.c214 static void adjust_membership(struct mcast_group *group, u8 join_state, int inc) argument
220 group->members[i] += inc;

Completed in 231 milliseconds

123456789