Searched refs:order (Results 1 - 25 of 390) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-generic/
H A Dpage.h12 int order; local
15 order = -1;
18 order++;
20 return order;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-parisc/
H A Dagp.h20 #define alloc_gatt_pages(order) \
21 ((char *)__get_free_pages(GFP_KERNEL, (order)))
22 #define free_gatt_pages(table, order) \
23 free_pages((unsigned long)(table), (order))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dagp.h17 #define alloc_gatt_pages(order) \
18 ((char *)__get_free_pages(GFP_KERNEL, (order)))
19 #define free_gatt_pages(table, order) \
20 free_pages((unsigned long)(table), (order))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc64/
H A Dagp.h16 #define alloc_gatt_pages(order) \
17 ((char *)__get_free_pages(GFP_KERNEL, (order)))
18 #define free_gatt_pages(table, order) \
19 free_pages((unsigned long)(table), (order))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ia64/
H A Dagp.h26 #define alloc_gatt_pages(order) \
27 ((char *)__get_free_pages(GFP_KERNEL, (order)))
28 #define free_gatt_pages(table, order) \
29 free_pages((unsigned long)(table), (order))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-alpha/
H A Dagp.h18 #define alloc_gatt_pages(order) \
19 ((char *)__get_free_pages(GFP_KERNEL, (order)))
20 #define free_gatt_pages(table, order) \
21 free_pages((unsigned long)(table), (order))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dagp.h31 #define alloc_gatt_pages(order) \
32 ((char *)__get_free_pages(GFP_KERNEL, (order)))
33 #define free_gatt_pages(table, order) \
34 free_pages((unsigned long)(table), (order))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Dagp.h29 #define alloc_gatt_pages(order) \
30 ((char *)__get_free_pages(GFP_KERNEL, (order)))
31 #define free_gatt_pages(table, order) \
32 free_pages((unsigned long)(table), (order))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libexif-0.6.19/libexif/
H A Dexif-byte-order.h1 /* exif-byte-order.h
28 /*! Which byte order to use */
30 /*! Big-endian byte order */
32 /*! Little-endian byte order */
36 /*! Return a short, localized, textual name for the given byte order.
37 * \param[in] order byte order
38 * \return localized textual name of the byte order
40 const char *exif_byte_order_get_name (ExifByteOrder order);
H A Dexif-byte-order.c1 /* exif-byte-order.c
23 #include <libexif/exif-byte-order.h>
29 exif_byte_order_get_name (ExifByteOrder order) argument
31 switch (order) {
H A Dexif-utils.h30 #include <libexif/exif-byte-order.h>
71 * \param[in] order byte order of raw value
74 ExifShort exif_get_short (const unsigned char *b, ExifByteOrder order);
79 * \param[in] order byte order of raw value
82 ExifSShort exif_get_sshort (const unsigned char *b, ExifByteOrder order);
87 * \param[in] order byte order of raw value
90 ExifLong exif_get_long (const unsigned char *b, ExifByteOrder order);
[all...]
H A Dexif-utils.c87 exif_get_sshort (const unsigned char *buf, ExifByteOrder order) argument
90 switch (order) {
102 exif_get_short (const unsigned char *buf, ExifByteOrder order) argument
104 return (exif_get_sshort (buf, order) & 0xffff);
108 exif_set_sshort (unsigned char *b, ExifByteOrder order, ExifSShort value) argument
111 switch (order) {
124 exif_set_short (unsigned char *b, ExifByteOrder order, ExifShort value) argument
126 exif_set_sshort (b, order, value);
130 exif_get_slong (const unsigned char *b, ExifByteOrder order) argument
133 switch (order) {
145 exif_set_slong(unsigned char *b, ExifByteOrder order, ExifSLong value) argument
165 exif_get_long(const unsigned char *buf, ExifByteOrder order) argument
171 exif_set_long(unsigned char *b, ExifByteOrder order, ExifLong value) argument
177 exif_get_srational(const unsigned char *buf, ExifByteOrder order) argument
188 exif_get_rational(const unsigned char *buf, ExifByteOrder order) argument
199 exif_set_rational(unsigned char *buf, ExifByteOrder order, ExifRational value) argument
208 exif_set_srational(unsigned char *buf, ExifByteOrder order, ExifSRational value) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dbitops.h13 int order; local
15 order = fls(count);
16 return order; /* We could be slightly more clever with -1 here... */
21 int order; local
23 order = fls(count) - 1;
25 order++;
26 return order;
H A Dgfp.h118 static inline void arch_free_page(struct page *page, int order) { } argument
121 static inline void arch_alloc_page(struct page *page, int order) { } argument
128 unsigned int order)
130 if (unlikely(order >= MAX_ORDER))
137 return __alloc_pages(gfp_mask, order,
142 extern struct page *alloc_pages_current(gfp_t gfp_mask, unsigned order);
145 alloc_pages(gfp_t gfp_mask, unsigned int order) argument
147 if (unlikely(order >= MAX_ORDER))
150 return alloc_pages_current(gfp_mask, order);
155 #define alloc_pages(gfp_mask, order) \
127 alloc_pages_node(int nid, gfp_t gfp_mask, unsigned int order) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/
H A Dcomm.c61 int order = 0; local
68 order = 1;
70 order = -1;
75 order = memcmp(thisline[0], thisline[1], tl0_len < tl1_len ? tl0_len : tl1_len);
76 if (!order)
77 order = tl0_len < tl1_len ? -1 : tl0_len != tl1_len;
80 if (order == 0 && !i)
82 else if (order > 0 && !(i & BB_EOF_1))
84 else if (order < 0 && !(i & BB_EOF_0))
93 if ((order <
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Diirfilter.c35 int order; member in struct:FFIIRFilterCoeffs
48 /// maximum supported filter order
53 int order, float cutoff_ratio,
63 if(order <= 1 || (order & 1) || order > MAXORDER || cutoff_ratio >= 1.0)
67 c->cx = av_malloc(sizeof(c->cx[0]) * ((order >> 1) + 1));
68 c->cy = av_malloc(sizeof(c->cy[0]) * order);
69 c->order = order;
51 ff_iir_filter_init_coeffs(enum IIRFilterType filt_type, enum IIRFilterMode filt_mode, int order, float cutoff_ratio, float stopband, float ripple) argument
100 ff_iir_filter_init_state(int order) argument
[all...]
H A Dra288.c114 * @param order filter order
123 static void do_hybrid_window(int order, int n, int non_rec, float *out, argument
127 float buffer1[order + 1];
128 float buffer2[order + 1];
129 float work[order + n + non_rec];
131 apply_window(work, window, hist, order + n + non_rec);
133 convolve(buffer1, work + order , n , order);
134 convolve(buffer2, work + order
148 backward_filter(float *hist, float *rec, const float *window, float *lpc, const float *tab, int order, int n, int non_rec, int move_size) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/mm/
H A Dsmall_page.c36 struct order { struct
45 static struct order orders[] = {
60 static unsigned long __get_small_page(int priority, struct order *order) argument
69 if (list_empty(&order->queue))
72 page = list_entry(order->queue.next, struct page, lru);
75 BUG_ON(USED_MAP(page) & ~order->all_used);
79 if (USED_MAP(page) == order->all_used)
83 return (unsigned long) page_address(page) + (offset << order->shift);
90 if (list_empty(&order
108 __free_small_page(unsigned long spage, struct order *order) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/drm/
H A Dati_pcigart.c38 static void *drm_ati_alloc_pcigart_table(int order) argument
44 DRM_DEBUG("%s: alloc %d order\n", __FUNCTION__, order);
47 order);
54 for (i = 0; i < order; i++, page++)
61 static void drm_ati_free_pcigart_table(void *address, int order) argument
65 int num_pages = 1 << order;
73 free_pages((unsigned long)address, order);
81 int order; local
90 order
132 int order; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dlpc.h90 * IN 0 < max_order <= FLAC__MAX_LPC_ORDER max LP order to compute
91 * OUT lp_coeff[0,max_order-1][0,max_order-1] LP coefficients for each order
94 * OUT error[0,max_order-1] error for each order (more
99 * Example: if max_order is 9, the LP coefficients for order 9 will be
100 * in lp_coeff[8][0,8], the LP coefficients for order 8 will be
111 * IN lp_coeff[0,order-1] LP coefficients
112 * IN order LP order
116 * OUT qlp_coeff[0,order-1] quantized coefficients
125 int FLAC__lpc_quantize_coefficients(const FLAC__real lp_coeff[], unsigned order, unsigne
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libexif-0.6.19/libexif/canon/
H A Dmnote-canon-entry.h25 #include <libexif/exif-byte-order.h>
38 ExifByteOrder order; member in struct:_MnoteCanonEntry
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libexif-0.6.19/libexif/olympus/
H A Dmnote-olympus-entry.h25 #include <libexif/exif-byte-order.h>
38 ExifByteOrder order; member in struct:_MnoteOlympusEntry
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libexif-0.6.19/libexif/pentax/
H A Dmnote-pentax-entry.h25 #include <libexif/exif-byte-order.h>
38 ExifByteOrder order; member in struct:_MnotePentaxEntry
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ecdsa/
H A Decs_ossl.c93 BIGNUM *k = NULL, *r = NULL, *order = NULL, *X = NULL; local
117 order = BN_new();
119 if (!k || !r || !order || !X)
129 if (!EC_GROUP_get_order(group, order, ctx))
139 if (!BN_rand_range(k, order))
171 if (!BN_nnmod(r, X, order, ctx))
180 if (!BN_mod_inverse(k, k, order, ctx))
202 if (order != NULL)
203 BN_free(order);
216 BIGNUM *kinv=NULL, *s, *m=NULL,*tmp=NULL,*order local
343 BIGNUM *order, *u1, *u2, *m, *X; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dlls.c97 double av_evaluate_lls(LLSModel *m, double *param, int order){ argument
101 for(i=0; i<=order; i++)
102 out+= param[i]*m->coeff[order][i];
114 int i, order; local
137 for(order=0; order<3; order++){
138 eval= av_evaluate_lls(&m, var+1, order);
139 printf("real:%f order:%d pred:%f var:%f coeffs:%f %f %f\n",
140 var[0], order, eva
[all...]

Completed in 137 milliseconds

1234567891011>>