Searched refs:pattern (Results 101 - 125 of 430) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_hqx.c87 /* m is the mask of diff with the center pixel that matters in the pattern, and
413 const int pattern = (w[4] != w[0] ? (yuv_diff(yuv1, rgb2yuv(r2y, w[0]))) : 0) local
423 dst32[dst32_linesize*0 + 0] = hq2x_interp_1x1(r2y, pattern, w, 0,1,2,3,4,5,6,7,8); // 00
424 dst32[dst32_linesize*0 + 1] = hq2x_interp_1x1(r2y, pattern, w, 2,1,0,5,4,3,8,7,6); // 01 (vert mirrored)
425 dst32[dst32_linesize*1 + 0] = hq2x_interp_1x1(r2y, pattern, w, 6,7,8,3,4,5,0,1,2); // 10 (horiz mirrored)
426 dst32[dst32_linesize*1 + 1] = hq2x_interp_1x1(r2y, pattern, w, 8,7,6,5,4,3,2,1,0); // 11 (center mirrored)
428 hq3x_interp_2x1(dst32, dst32_linesize, r2y, pattern, w, 0,1, 0,1,2,3,4,5,6,7,8, 0); // 00 01
429 hq3x_interp_2x1(dst32 + 1, dst32_linesize, r2y, pattern, w, 1,3, 2,5,8,1,4,7,0,3,6, 1); // 02 12 (rotated to the right)
430 hq3x_interp_2x1(dst32 + 1*dst32_linesize, dst32_linesize, r2y, pattern, w, 2,0, 6,3,0,7,4,1,8,5,2, 1); // 20 10 (rotated to the left)
431 hq3x_interp_2x1(dst32 + 1*dst32_linesize + 1, dst32_linesize, r2y, pattern,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/mISDN/
H A Ddsp_tones.c235 static struct pattern { struct
240 } pattern[] = { variable in typeref:struct:pattern
363 * the count will be changed and may begin from 0 each pattern period.
367 * pattern - the type of the pattern
368 * count - the sample from the beginning of the pattern (phase)
378 struct pattern *pat;
387 /* process pattern */
388 pat = (struct pattern *)tone->pattern;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/theos/
H A Dtheos.c116 int match(string, pattern, ignore_case __WDL)
118 ZCONST char *pattern; variable
124 if (!(*pattern))
127 if ( (!(*string)) && (!(*pattern)) )
129 else if ( !(*pattern) )
131 else if (*pattern == '*') {
132 if (!*(pattern+1))
136 matched = match(string+k, pattern+1, ignore_case __WDL);
140 } else if (*pattern == '@') {
144 } else if (*pattern
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/
H A Dget_maintainer.pl158 'pattern-depth=i' => \$pattern_depth,
236 ##Filename pattern matching
241 ##if pattern is a directory and it lacks a trailing slash, add one
513 my ($file, $pattern) = @_;
514 if (substr($pattern, -1) eq "/") {
515 if ($file =~ m@^$pattern@) {
519 if ($file =~ m@^$pattern@) {
521 my $s2 = ($pattern =~ tr@/@@);
567 --pattern-depth => Number of pattern director
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-core/
H A Drr.c336 int avahi_key_pattern_match(const AvahiKey *pattern, const AvahiKey *k) { argument
337 assert(pattern);
342 if (pattern == k)
345 return avahi_domain_equal(pattern->name, k->name) &&
346 (pattern->type == k->type || pattern->type == AVAHI_DNS_TYPE_ANY) &&
347 (pattern->clazz == k->clazz || pattern->clazz == AVAHI_DNS_CLASS_ANY);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-core/
H A Drr.c336 int avahi_key_pattern_match(const AvahiKey *pattern, const AvahiKey *k) { argument
337 assert(pattern);
342 if (pattern == k)
345 return avahi_domain_equal(pattern->name, k->name) &&
346 (pattern->type == k->type || pattern->type == AVAHI_DNS_TYPE_ANY) &&
347 (pattern->clazz == k->clazz || pattern->clazz == AVAHI_DNS_CLASS_ANY);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/
H A Dgetpart.pm187 # Strip off all lines that match the specified pattern and return
192 my ($pattern, $arrayref) = @_;
197 if($_ !~ /$pattern/) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/onenand/
H A Donenand_bbt.c20 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
24 * @param td search pattern descriptor
26 * Check for a pattern at the given place. Used to search bad block
28 * no optional empty check and the pattern is expected to start
37 /* Compare the pattern */
39 if (p[i] != td->pattern[i])
49 * @param bd descriptor for the good/bad block search pattern
54 * for the given good/bad block identify pattern
124 * @param bd descriptor for the good/bad block search pattern
169 * @param bd descriptor for the good/bad block search pattern
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/unix/
H A Dzipgrep4 # Zip archive for a string or pattern. Search all members if no members
28 echo usage: `basename "$0"` "[egrep_options] pattern zipfile [members...]"
29 echo Uses unzip and egrep to search the zip members for a string or pattern.
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dtextsearch.c38 * search parameters such as the pattern and algorithm name.
58 * the pattern to look for and flags. As a flag, you can set TS_IGNORECASE
80 * const char *pattern = "chicken";
83 * conf = textsearch_prepare("kmp", pattern, strlen(pattern),
215 * textsearch_find_continuous - search a pattern in continuous/linear data
224 * Returns the position of first occurrence of the pattern or
243 * @pattern: pattern data
244 * @len: length of pattern
260 textsearch_prepare(const char *algo, const void *pattern, unsigned int len, gfp_t gfp_mask, int flags) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/usr/sbin/
H A Dzipgrep4 # Zip archive for a string or pattern. Search all members if no members
28 echo usage: `basename "$0"` "[egrep_options] pattern zipfile [members...]"
29 echo Uses unzip and egrep to search the zip members for a string or pattern.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Drv40.c166 int pattern; local
171 pattern = get_vlc2(gb, aic_top_vlc.table, AIC_TOP_BITS, 1);
172 dst[0] = (pattern >> 2) & 2;
173 dst[1] = (pattern >> 1) & 2;
174 dst[2] = pattern & 2;
175 dst[3] = (pattern << 1) & 2;
180 /* Coefficients are read using VLC chosen by the prediction pattern
189 pattern = A + (B << 4) + (C << 8);
191 if(pattern == rv40_aic_table_index[k])
193 if(j < 3 && k < MODE2_PATTERNS_NUM){ //pattern i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Drv40.c166 int pattern; local
171 pattern = get_vlc2(gb, aic_top_vlc.table, AIC_TOP_BITS, 1);
172 dst[0] = (pattern >> 2) & 2;
173 dst[1] = (pattern >> 1) & 2;
174 dst[2] = pattern & 2;
175 dst[3] = (pattern << 1) & 2;
180 /* Coefficients are read using VLC chosen by the prediction pattern
189 pattern = A + (B << 4) + (C << 8);
191 if(pattern == rv40_aic_table_index[k])
193 if(j < 3 && k < MODE2_PATTERNS_NUM){ //pattern i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/scripts/kconfig/
H A Dlkc_proto.h22 P(sym_re_search,struct symbol **,(const char *pattern));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/l7filter/
H A Dl7_filter_main.h116 regexp * pattern; member in struct:_pattern_cache
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netfilter/
H A Dxt_string.c60 ts_conf = textsearch_prepare(conf->algo, conf->pattern, conf->patlen,
/netgear-R7000-V1.0.7.12_1.2.5/project/gpl/l7filter/
H A Dl7_filter_main.h116 regexp * pattern; member in struct:_pattern_cache
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_streams/
H A Dmain.c1 /* test_streams - Simple test pattern generator
285 static FLAC__bool generate_fsd8(const char *fn, const int pattern[], unsigned reps) argument
290 FLAC__ASSERT(pattern != 0);
296 for(p = 0; pattern[p]; p++) {
297 signed char x = pattern[p] > 0? 127 : -128;
311 static FLAC__bool generate_fsd16(const char *fn, const int pattern[], unsigned reps) argument
316 FLAC__ASSERT(pattern != 0);
322 for(p = 0; pattern[p]; p++) {
323 FLAC__int16 x = pattern[p] > 0? 32767 : -32768;
362 static FLAC__bool generate_fsd24(const char *fn, const int pattern[], unsigne argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/avr32/mach-at32ap/
H A Dextint.c198 u32 pattern; local
227 pattern = eic_readl(eic, MODE);
228 nr_of_irqs = fls(pattern);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/misc/
H A Dstats.pl35 $pattern = $query->param('boardtype');
38 /^$pattern\_(\d+)/ && push(@boards, $1);
41 if ($pattern && @boards) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/47xxnand/
H A Dbrcmnand_bbt.c37 * The table is marked in the oob area with an ident pattern and a version
122 * check_pattern - [GENERIC] check if a pattern is in the buffer
126 * @td: search pattern descriptor
128 * Check for a pattern at the given place. Used to search bad block
131 * pattern area contain 0xff
148 /* Compare the pattern */
150 if (p[i] != td->pattern[i])
166 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
168 * @td: search pattern descriptor
170 * Check for a pattern a
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/bcm947xx/nand/
H A Dbrcmnand_bbt.c37 * The table is marked in the oob area with an ident pattern and a version
122 * check_pattern - [GENERIC] check if a pattern is in the buffer
126 * @td: search pattern descriptor
128 * Check for a pattern at the given place. Used to search bad block
131 * pattern area contain 0xff
148 /* Compare the pattern */
150 if (p[i] != td->pattern[i])
166 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
168 * @td: search pattern descriptor
170 * Check for a pattern a
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/gadget/
H A Df_sourcesink.c69 static unsigned pattern; variable
70 module_param(pattern, uint, 0);
71 MODULE_PARM_DESC(pattern, "0 = all zeroes, 1 = mod63 ");
210 switch (pattern) {
242 switch (pattern) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/usb/
H A Dffs-test.c388 enum pattern { PAT_ZERO, PAT_SEQ, PAT_PIPE }; enum
389 static enum pattern pattern; variable in typeref:enum:pattern
399 switch (pattern) {
426 switch (pattern) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/nand/
H A Dnand_bbt.c31 * The table is marked in the oob area with an ident pattern and a version
63 * check_pattern - [GENERIC] check if a pattern is in the buffer
67 * @td: search pattern descriptor
69 * Check for a pattern at the given place. Used to search bad block
72 * pattern area contain 0xff
89 /* Compare the pattern */
91 if (p[i] != td->pattern[i])
95 /* Check both positions 1 and 6 for pattern? */
110 /* Compare the pattern */
112 if (p[i] != td->pattern[
[all...]

Completed in 231 milliseconds

1234567891011>>