Searched refs:ref (Results 26 - 50 of 300) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/hardware/
H A Dicst525.h18 unsigned long ref; member in struct:icst525_params
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Duri.c744 * relative-ref = relative-part [ "?" query ] [ "#" fragment ]
843 * URI-reference = URI / relative-ref
907 * URI-reference = URI / relative-ref
923 * URI-reference = URI / relative-ref
1946 xmlURIPtr ref = NULL; local
1962 ref = xmlCreateURI();
1963 if (ref == NULL)
1965 ret = xmlParseURIReference(ref, (const char *) URI);
1972 if ((ref != NULL) && (ref
2231 xmlURIPtr ref = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dfaxcompr.c159 unsigned int width, int *runs, const int *runend, const int *ref)
162 int run_off = *ref++;
174 run_off += *ref++;
177 run_off += *ref++;
215 run_off -= *--ref;
231 run_off += *ref++;
232 run_off += *ref++;
275 int *runs, *ref, *runend; local
280 ref = av_malloc(runsize * sizeof(ref[
158 decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb, unsigned int width, int *runs, const int *runend, const int *ref) argument
[all...]
H A Dlpc.c81 static int estimate_best_order(double *ref, int min_order, int max_order) argument
87 if(ref[i] > 0.10) {
110 double ref[MAX_LPC_ORDER]; local
123 ref[i] = fabs(lpc[i][i]);
156 ref[i]= sqrt(m[(pass-1)&1].variance[i] / weight) * (blocksize - max_order) / 4000;
159 ref[i] = ref[i-1] - ref[i];
164 opt_order = estimate_best_order(ref, min_order, max_order);
H A Dsnow.h154 static av_always_inline void snow_horizontal_compose_lift_lead_out(int i, IDWTELEM * dst, IDWTELEM * src, IDWTELEM * ref, int width, int w, int lift_high, int mul, int add, int shift){ argument
156 dst[i] = src[i] - ((mul * (ref[i] + ref[i + 1]) + add) >> shift);
160 dst[w] = src[w] - ((mul * 2 * ref[w] + add) >> shift);
164 static av_always_inline void snow_horizontal_compose_liftS_lead_out(int i, IDWTELEM * dst, IDWTELEM * src, IDWTELEM * ref, int width, int w){ argument
166 dst[i] = src[i] + ((ref[i] + ref[(i+1)]+W_BO + 4 * src[i]) >> W_BS);
170 dst[w] = src[w] + ((2 * ref[w] + W_BO + 4 * src[w]) >> W_BS);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jffs2/
H A Dreadinode.c31 struct jffs2_raw_node_ref *ref = tn->fn->raw; local
44 ofs = ref_offset(ref) + sizeof(struct jffs2_raw_inode);
51 ref_offset(ref), tn->csize, ofs);
59 ref_offset(ref), tn->csize, tn->partial_crc, tn->data_crc, ofs - len, ofs, len);
112 jeb = &c->blocks[ref->flash_offset / c->sector_size];
113 len = ref_totlen(c, jeb, ref);
118 ref->flash_offset |= REF_PRISTINE;
558 /* Returns first valid node after 'ref'. May return 'ref' */
559 static struct jffs2_raw_node_ref *jffs2_first_valid_node(struct jffs2_raw_node_ref *ref) argument
577 read_direntry(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *ref, struct jffs2_raw_dirent *rd, size_t read, struct jffs2_readinode_info *rii) argument
683 read_dnode(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *ref, struct jffs2_raw_inode *rd, int rdlen, struct jffs2_readinode_info *rii) argument
857 read_unknown(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *ref, struct jffs2_unknown_node *un) argument
909 read_more(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *ref, int needed_len, int *rdlen, unsigned char *buf) argument
953 struct jffs2_raw_node_ref *ref, *valid_ref; local
[all...]
H A Dnodelist.c610 struct jffs2_raw_node_ref *ref; local
615 ref = jeb->last_node;
617 dbg_noderef("Last node at %p is (%08x,%p)\n", ref, ref->flash_offset,
618 ref->next_in_ino);
620 while (ref->flash_offset != REF_EMPTY_NODE) {
621 if (ref->flash_offset == REF_LINK_NODE)
622 ref = ref->next_in_ino;
624 ref
712 __ref_totlen(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, struct jffs2_raw_node_ref *ref) argument
736 __jffs2_ref_totlen(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, struct jffs2_raw_node_ref *ref) argument
[all...]
H A Dnodelist.h102 static inline struct jffs2_raw_node_ref *ref_next(struct jffs2_raw_node_ref *ref) argument
104 ref++;
107 if (ref->flash_offset == REF_LINK_NODE) {
108 ref = ref->next_in_ino;
109 if (!ref)
110 return ref;
114 if (ref->flash_offset == REF_EMPTY_NODE)
117 return ref;
137 #define ref_flags(ref) ((re
[all...]
H A Dxattr.h66 static inline int is_xattr_ref_dead(struct jffs2_xattr_ref *ref) argument
68 return ((ref->xseqno & XREF_DELETE_MARKER) != 0);
85 extern int jffs2_garbage_collect_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref,
89 extern void jffs2_release_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Duri.c1859 xmlURIPtr ref = NULL; local
1875 ref = xmlCreateURI();
1876 if (ref == NULL)
1878 ret = xmlParseURIReference(ref, (const char *) URI);
1885 if ((ref != NULL) && (ref->scheme != NULL)) {
1901 if (ref)
1902 val = xmlSaveUri(ref);
1905 if (ref == NULL) {
1932 if ((ref
2138 xmlURIPtr ref = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Duri.c1859 xmlURIPtr ref = NULL; local
1875 ref = xmlCreateURI();
1876 if (ref == NULL)
1878 ret = xmlParseURIReference(ref, (const char *) URI);
1885 if ((ref != NULL) && (ref->scheme != NULL)) {
1901 if (ref)
1902 val = xmlSaveUri(ref);
1905 if (ref == NULL) {
1932 if ((ref
2138 xmlURIPtr ref = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bzip2/
H A Dmakefile.msc28 .\\bzip2 -1 < sample1.ref > sample1.rb2
29 .\\bzip2 -2 < sample2.ref > sample2.rb2
30 .\\bzip2 -3 < sample3.ref > sample3.rb2
38 @echo The correct size for sample3.ref is 120,244. If it
43 fc sample1.tst sample1.ref
44 fc sample2.tst sample2.ref
45 fc sample3.tst sample3.ref
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Direl.h67 struct ext2_inode_reference *ref);
81 struct ext2_inode_reference *ref);
110 #define ext2fs_irel_add_ref(irel, ino, ref) ((irel)->add_ref((irel), ino, ref))
112 #define ext2fs_irel_next_ref(irel, ref) ((irel)->next_ref((irel), ref))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/tipc/
H A Dzone.c114 struct node *tipc_zone_select_remote_node(struct _zone *z_ptr, u32 addr, u32 ref) argument
125 n_ptr = tipc_cltr_select_node(c_ptr, ref);
134 n_ptr = tipc_cltr_select_node(c_ptr, ref);
141 u32 tipc_zone_select_router(struct _zone *z_ptr, u32 addr, u32 ref) argument
150 router = c_ptr ? tipc_cltr_select_router(c_ptr, ref) : 0;
157 router = c_ptr ? tipc_cltr_select_router(c_ptr, ref) : 0;
H A Dzone.h57 struct node *tipc_zone_select_remote_node(struct _zone *z_ptr, u32 addr, u32 ref);
58 u32 tipc_zone_select_router(struct _zone *z_ptr, u32 addr, u32 ref);
H A Dport.h41 #include "ref.h"
51 * @ref: object reference to associated TIPC port
59 u32 ref; member in struct:user_port
131 static inline struct port *tipc_port_lock(u32 ref) argument
133 return (struct port *)tipc_ref_lock(ref);
147 static inline struct port* tipc_port_deref(u32 ref) argument
149 return (struct port *)tipc_ref_deref(ref);
H A Dref.c2 * net/tipc/ref.c: TIPC object registry code
38 #include "ref.h"
152 void tipc_ref_discard(u32 ref) argument
158 if (!ref) {
169 index = ref & index_mask;
176 if (entry->data.reference != ref) {
191 entry->data.next_plus_upper = (ref & ~index_mask) + (index_mask + 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/internal/
H A Ddb_java.java24 /* package */ static void deleteRef0(long ref) { argument
25 db_javaJNI.deleteRef0(ref);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/alpha/
H A Dmotion_est_mvi_asm.S73 t3: ref left
74 t4: ref right
79 t8: ref left
80 t9: ref right
91 ldq t3, 0(a1) # ref left
92 ldq t4, 8(a1) # ref right
99 ldq t8, 0(a1) # ref left
100 ldq t9, 8(a1) # ref right
136 ldq t2, 0(a1) # ref left
137 ldq t3, 8(a1) # ref righ
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/docs_src/
H A Dbuild66 rm -f $TARGET/ref/toc.html
72 < ref/toc.html > $TARGET/ref/toc.html
134 api_tcl images index.html java license ref utility);;
154 ref)
155 [ -d $TARGET/ref ] || mkdir $TARGET/ref
158 build ref/$i C_API ../.. ref/$i
201 run ref
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-common/
H A Ddbus-watch-glue.c67 int ref; member in struct:__anon1772
72 assert(d->ref >= 1);
74 d->ref++;
80 assert(d->ref >= 1);
82 if (--d->ref <= 0) {
202 int ref; member in struct:TimeoutData
207 assert(t->ref >= 1);
209 t->ref++;
215 assert(t->ref >= 1);
217 if (--t->ref <
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A DMakefile.in172 config.charset locale.alias ref-add.sin ref-del.sin export.h libintl.rc \
183 all-yes: libintl.$la libintl.h charset.alias ref-add.sed ref-del.sed
294 ref-add.sed: $(srcdir)/ref-add.sin
295 sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-add.sin > t-ref-add.sed
296 mv t-ref-add.sed ref
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/ppc/
H A Dsnow_altivec.c74 IDWTELEM * const ref = b + w2 - 1;
79 tmp1 = vec_ld (0, ref);
80 align = vec_lvsl (0, ref);
81 tmp2 = vec_ld (15, ref);
86 /* b[i+0] = b[i+0] - ((3 * (ref[i+0] + ref[i+1]) + 4) >> 3);
87 b[i+1] = b[i+1] - ((3 * (ref[i+1] + ref[i+2]) + 4) >> 3);
88 b[i+2] = b[i+2] - ((3 * (ref[i+2] + ref[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ipath/
H A Dipath_mmap.c43 * @ref: a pointer to the kref within struct ipath_mmap_info
45 void ipath_release_mmap_info(struct kref *ref) argument
48 container_of(ref, struct ipath_mmap_info, ref);
67 kref_get(&ip->ref);
74 kref_put(&ip->ref, ipath_release_mmap_info);
153 kref_init(&ip->ref);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/dhcp6/
H A Drelay6_parser.h60 int check_buffer __P((int ref, struct msg_parser *mesg));

Completed in 327 milliseconds

1234567891011>>