Searched refs:source (Results 76 - 100 of 1136) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/lib/
H A Dcsum-copy_64.S18 * rdi source
29 * They also should align source or destination to 8 bytes.
32 .macro source
96 source
98 source
100 source
102 source
105 source
107 source
109 source
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/utils/convertrc/
H A Dconvert.cpp194 wxString source,target;
200 source=argv[1];
204 if ((source.Find(_T(".wxr"))>0)&&(target.Find(_T(".xml"))>0))
206 trans_wxr2xml.Convert(source,target);
209 else if ((source.Find(_T(".rc"))!=wxNOT_FOUND)&(target.Find(_T(".wxr"))!=wxNOT_FOUND))
211 trans_rc2wxr.Convert(source,target);
214 else if ((source.Find(_T(".rc"))!=wxNOT_FOUND)&(target.Find(_T(".xml"))!=wxNOT_FOUND))
216 trans_rc2xml.Convert(source,target);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dcurl_addrinfo.h85 int line, const char *source);
94 int line, const char *source);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Dutils.h31 char *local_strdup(const char *source);
32 void local_strcat(char **dest, const char *source);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/
H A DKconfig.x860 source "arch/um/Kconfig.common"
7 source "arch/x86/Kconfig.cpu" label
52 source "arch/um/Kconfig.um" label
56 source "arch/um/Kconfig.rest" label
1 source "arch/um/Kconfig.common" label
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dnfs.h151 static inline void nfs_copy_fh(struct nfs_fh *target, const struct nfs_fh *source) argument
153 target->size = source->size;
154 memcpy(target->data, source->data, source->size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddirac.h55 dirac_source_params *source);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddirac.h58 dirac_source_params *source);
H A Dsamidec.c32 AVBPrint source; member in struct:__anon3221
66 /* check if the current paragraph is the "source" (speaker name) */
68 dst = &sami->source;
105 if (sami->source.len)
106 av_bprintf(&sami->full, "{\\i1}%s{\\i0}\\N", sami->source.str);
134 av_bprint_init(&sami->source, 0, 2048);
143 av_bprint_finalize(&sami->source, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/l7filter/regexp/
H A Dregsub.c50 regsub(regexp * prog, char * source, char * dest) argument
61 if (prog == NULL || source == NULL || dest == NULL) {
70 src = source;
/netgear-R7000-V1.0.7.12_1.2.5/project/gpl/l7filter/regexp/
H A Dregsub.c50 regsub(regexp * prog, char * source, char * dest) argument
61 if (prog == NULL || source == NULL || dest == NULL) {
70 src = source;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lua/source/src/
H A Dlobject.c252 void luaO_chunkid (char *out, const char *source, size_t bufflen) { argument
253 size_t l = strlen(source);
254 if (*source == '=') { /* 'literal' source */
256 memcpy(out, source + 1, l * sizeof(char));
258 addstr(out, source + 1, bufflen - 1);
262 else if (*source == '@') { /* file name */
264 memcpy(out, source + 1, l * sizeof(char));
268 memcpy(out, source + 1 + l - bufflen, bufflen * sizeof(char));
271 else { /* string; format as [string "source"] */
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/bridge/
H A Dbr_fdb.c103 /* Extract source ip fields */
124 static int fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
462 struct net_bridge_port *source,
468 struct net_bridge_port *source,
487 fdb->dst = source;
494 if (!is_local && (source->state == BR_STATE_FORWARDING))
495 br_brc_add((unsigned char *)addr, source->dev, skb);
501 static int fdb_insert(struct net_bridge *br, struct net_bridge_port *source, argument
519 source->dev->name);
524 if (!fdb_create(head, source, add
461 fdb_create(struct hlist_head *head, struct net_bridge_port *source, const unsigned char *addr, int is_local, struct sk_buff *skb) argument
533 br_fdb_insert(struct net_bridge *br, struct net_bridge_port *source, const unsigned char *addr) argument
545 br_fdb_update(struct net_bridge *br, struct net_bridge_port *source, const unsigned char *addr, struct sk_buff *skb) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/examples/
H A Dzpipe.c30 /* Compress from file source to file dest until EOF on source.
36 int def(FILE *source, FILE *dest, int level) argument
54 strm.avail_in = fread(in, 1, CHUNK, source);
55 if (ferror(source)) {
59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
63 compression if all of source has been read in */
86 /* Decompress from file source to file dest until stream ends or EOF.
92 int inf(FILE *source, FILE *dest) argument
112 strm.avail_in = fread(in, 1, CHUNK, source);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/examples/
H A Dzpipe.c20 /* Compress from file source to file dest until EOF on source.
26 int def(FILE *source, FILE *dest, int level) argument
44 strm.avail_in = fread(in, 1, CHUNK, source);
45 if (ferror(source)) {
49 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
53 compression if all of source has been read in */
76 /* Decompress from file source to file dest until stream ends or EOF.
82 int inf(FILE *source, FILE *dest) argument
102 strm.avail_in = fread(in, 1, CHUNK, source);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/examples/
H A Dzpipe.c20 /* Compress from file source to file dest until EOF on source.
26 int def(FILE *source, FILE *dest, int level) argument
44 strm.avail_in = fread(in, 1, CHUNK, source);
45 if (ferror(source)) {
49 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
53 compression if all of source has been read in */
76 /* Decompress from file source to file dest until stream ends or EOF.
82 int inf(FILE *source, FILE *dest) argument
102 strm.avail_in = fread(in, 1, CHUNK, source);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/examples/
H A Dzpipe.c30 /* Compress from file source to file dest until EOF on source.
36 int def(FILE *source, FILE *dest, int level) argument
54 strm.avail_in = fread(in, 1, CHUNK, source);
55 if (ferror(source)) {
59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
63 compression if all of source has been read in */
86 /* Decompress from file source to file dest until stream ends or EOF.
92 int inf(FILE *source, FILE *dest) argument
112 strm.avail_in = fread(in, 1, CHUNK, source);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibipt_addrtype.c49 " [!] --src-type type[,...] Match source address type\n"
60 " [!] --src-type type[,...] Match source address type\n"
106 parse_types(cb->arg, &info->source);
125 parse_types(cb->arg, &info->source);
169 if (info->source) {
173 print_types(info->source);
190 if (info->source) {
194 print_types(info->source);
215 if (info->source) {
219 print_types(info->source);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pps/
H A Dkapi.c63 /* pps_get_source - find a PPS source
64 * @source: the PPS source ID.
66 * This function is used to find an already registered PPS source into the
70 * to the PPS source data struct (the refcounter is incremented by 1).
73 struct pps_device *pps_get_source(int source) argument
80 pps = idr_find(&pps_idr, source);
89 /* pps_put_source - free the PPS source data
90 * @pps: a pointer to the PPS source.
107 /* No more reference to the PPS source
238 pps_unregister_source(int source) argument
271 pps_event(int source, struct pps_ktime *ts, int event, void *data) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/extensions/
H A Dlibipt_addrtype.c49 " [!] --src-type type[,...] Match source address type\n"
60 " [!] --src-type type[,...] Match source address type\n"
106 parse_types(cb->arg, &info->source);
125 parse_types(cb->arg, &info->source);
169 if (info->source) {
173 print_types(info->source);
190 if (info->source) {
194 print_types(info->source);
215 if (info->source) {
219 print_types(info->source);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DDownloadQueue.cpp474 // Set the source rarity thresholds
607 void CDownloadQueue::CheckAndAddSource(CPartFile* sender, CUpDownClient* source) argument
610 if ( source->HasValidHash() ) {
611 if ( source->GetUserHash() == thePrefs::GetUserHash() ) {
612 AddDebugLogLineN( logDownloadQueue, wxT("Tried to add source with matching hash to your own.") );
613 source->Safe_Delete();
619 source->Safe_Delete();
624 if ( theApp->clientlist->IsDeadSource( source ) || sender->IsDeadSource(source) ) {
625 source
704 CheckAndAddKnownSource(CPartFile* sender,CUpDownClient* source) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-glib/
H A Dglib-watch.c59 GSource source; member in struct:AvahiGLibPoll
74 g_source_remove_poll(&w->glib_poll->source, &w->pollfd);
133 g_source_add_poll(&g->source, &w->pollfd);
160 g_source_remove_poll(&w->glib_poll->source, &w->pollfd);
257 static gboolean prepare_func(GSource *source, gint *timeout) { argument
258 AvahiGLibPoll *g = (AvahiGLibPoll*) source;
275 g_source_get_current_time(source, &now);
293 static gboolean check_func(GSource *source) { argument
294 AvahiGLibPoll *g = (AvahiGLibPoll*) source;
303 g_source_get_current_time(source,
318 dispatch_func(GSource *source, AVAHI_GCC_UNUSED GSourceFunc callback, AVAHI_GCC_UNUSED gpointer userdata) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-glib/
H A Dglib-watch.c59 GSource source; member in struct:AvahiGLibPoll
74 g_source_remove_poll(&w->glib_poll->source, &w->pollfd);
133 g_source_add_poll(&g->source, &w->pollfd);
160 g_source_remove_poll(&w->glib_poll->source, &w->pollfd);
257 static gboolean prepare_func(GSource *source, gint *timeout) { argument
258 AvahiGLibPoll *g = (AvahiGLibPoll*) source;
275 g_source_get_current_time(source, &now);
293 static gboolean check_func(GSource *source) { argument
294 AvahiGLibPoll *g = (AvahiGLibPoll*) source;
303 g_source_get_current_time(source,
318 dispatch_func(GSource *source, AVAHI_GCC_UNUSED GSourceFunc callback, AVAHI_GCC_UNUSED gpointer userdata) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/libfuse-lite/
H A Dfusermount.c130 static int add_mount(const char *source, const char *mnt, const char *type, argument
133 return fuse_mnt_add_mount(progname, source, mnt, type, opts);
163 static int add_mount(const char *source, const char *mnt, const char *type, argument
166 (void) source;
315 char *source = NULL; local
378 source = malloc((fsname ? strlen(fsname) : 0) + strlen(dev) + 32);
381 if (!type || !source) {
389 strcpy(source, fsname);
391 strcpy(source, dev);
396 res = mount(source, mn
567 char *source = NULL; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/rc/
H A Dhotplug_usb.c167 char source[128]; local
183 //set up source
185 snprintf(source, 128, "/dev/sda%d", i);
195 rval = mount(source, target, "vfat", MS_SYNCHRONOUS, 0);
198 snprintf(buf, 128, "echo \"mount %s %s with vfat, rval:%d \">>/tmp/usberr.log", source, target, rval);
203 rval = mount(source, target, "ntfs", MS_RDONLY, 0);
205 snprintf(buf, 128, "echo \"mount %s %s with ntfs, rval:%d \">>/tmp/usberr.log", source, target, rval);

Completed in 271 milliseconds

1234567891011>>