Searched refs:pattern (Results 401 - 425 of 1064) sorted by relevance

<<11121314151617181920>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.0.25b/examples/logon/mklogon/
H A Dmklogon.pl262 my $pattern = shift;
264 if ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\/(\d{1,2})$/ ) {
273 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\/(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/ ) {
278 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ ) {
282 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\s*\-\s*(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ ) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/examples/logon/mklogon/
H A Dmklogon.pl261 my $pattern = shift;
263 if ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\/(\d{1,2})$/ ) {
272 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\/(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/ ) {
277 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ ) {
281 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\s*\-\s*(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ ) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.0.25b/examples/logon/mklogon/
H A Dmklogon.pl262 my $pattern = shift;
264 if ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\/(\d{1,2})$/ ) {
273 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\/(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/ ) {
278 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ ) {
282 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\s*\-\s*(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ ) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/examples/logon/mklogon/
H A Dmklogon.pl261 my $pattern = shift;
263 if ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\/(\d{1,2})$/ ) {
272 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\/(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/ ) {
277 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ ) {
281 } elsif ( $pattern =~ m/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\s*\-\s*(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ ) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/flac/src/libFLAC/
H A Dbitwriter.c518 FLAC__uint32 uval, pattern; local
530 pattern = 1 << parameter; /* the unary end bit */
531 pattern |= (uval & ((1<<parameter)-1)); /* the binary LSBs */
534 return FLAC__bitwriter_write_raw_uint32(bw, pattern, total_bits);
538 FLAC__bitwriter_write_raw_uint32(bw, pattern, interesting_bits); /* write the unary end bit and binary LSBs */
675 unsigned pattern;
681 pattern = 1 << k; /* the unary end bit */
682 pattern |= (uval & ((1u<<k)-1)); /* the binary LSBs */
685 if(!FLAC__bitwriter_write_raw_uint32(bw, pattern, total_bits))
693 if(!FLAC__bitwriter_write_raw_uint32(bw, pattern,
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/flac/src/libFLAC/
H A Dbitwriter.c518 FLAC__uint32 uval, pattern; local
530 pattern = 1 << parameter; /* the unary end bit */
531 pattern |= (uval & ((1<<parameter)-1)); /* the binary LSBs */
534 return FLAC__bitwriter_write_raw_uint32(bw, pattern, total_bits);
538 FLAC__bitwriter_write_raw_uint32(bw, pattern, interesting_bits); /* write the unary end bit and binary LSBs */
675 unsigned pattern;
681 pattern = 1 << k; /* the unary end bit */
682 pattern |= (uval & ((1u<<k)-1)); /* the binary LSBs */
685 if(!FLAC__bitwriter_write_raw_uint32(bw, pattern, total_bits))
693 if(!FLAC__bitwriter_write_raw_uint32(bw, pattern,
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/flac/src/libFLAC/
H A Dbitwriter.c518 FLAC__uint32 uval, pattern; local
530 pattern = 1 << parameter; /* the unary end bit */
531 pattern |= (uval & ((1<<parameter)-1)); /* the binary LSBs */
534 return FLAC__bitwriter_write_raw_uint32(bw, pattern, total_bits);
538 FLAC__bitwriter_write_raw_uint32(bw, pattern, interesting_bits); /* write the unary end bit and binary LSBs */
675 unsigned pattern;
681 pattern = 1 << k; /* the unary end bit */
682 pattern |= (uval & ((1u<<k)-1)); /* the binary LSBs */
685 if(!FLAC__bitwriter_write_raw_uint32(bw, pattern, total_bits))
693 if(!FLAC__bitwriter_write_raw_uint32(bw, pattern,
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/sim/testsuite/sim/h8300/
H A Dandb.s41 set_grs_a5a5 ; Fill all general regs with a fixed pattern
62 set_grs_a5a5 ; Fill all general regs with a fixed pattern
98 set_grs_a5a5 ; Fill all general regs with a fixed pattern
135 set_grs_a5a5 ; Fill all general regs with a fixed pattern
172 set_grs_a5a5 ; Fill all general regs with a fixed pattern
209 set_grs_a5a5 ; Fill all general regs with a fixed pattern
244 set_grs_a5a5 ; Fill all general regs with a fixed pattern
270 set_grs_a5a5 ; Fill all general regs with a fixed pattern
308 set_grs_a5a5 ; Fill all general regs with a fixed pattern
346 set_grs_a5a5 ; Fill all general regs with a fixed pattern
[all...]
H A Dorb.s42 set_grs_a5a5 ; Fill all general regs with a fixed pattern
67 set_grs_a5a5 ; Fill all general regs with a fixed pattern
103 set_grs_a5a5 ; Fill all general regs with a fixed pattern
140 set_grs_a5a5 ; Fill all general regs with a fixed pattern
177 set_grs_a5a5 ; Fill all general regs with a fixed pattern
214 set_grs_a5a5 ; Fill all general regs with a fixed pattern
250 set_grs_a5a5 ; Fill all general regs with a fixed pattern
276 set_grs_a5a5 ; Fill all general regs with a fixed pattern
314 set_grs_a5a5 ; Fill all general regs with a fixed pattern
352 set_grs_a5a5 ; Fill all general regs with a fixed pattern
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/sim/testsuite/sim/h8300/
H A Dandb.s41 set_grs_a5a5 ; Fill all general regs with a fixed pattern
62 set_grs_a5a5 ; Fill all general regs with a fixed pattern
98 set_grs_a5a5 ; Fill all general regs with a fixed pattern
135 set_grs_a5a5 ; Fill all general regs with a fixed pattern
172 set_grs_a5a5 ; Fill all general regs with a fixed pattern
209 set_grs_a5a5 ; Fill all general regs with a fixed pattern
244 set_grs_a5a5 ; Fill all general regs with a fixed pattern
270 set_grs_a5a5 ; Fill all general regs with a fixed pattern
308 set_grs_a5a5 ; Fill all general regs with a fixed pattern
346 set_grs_a5a5 ; Fill all general regs with a fixed pattern
[all...]
H A Dorb.s42 set_grs_a5a5 ; Fill all general regs with a fixed pattern
67 set_grs_a5a5 ; Fill all general regs with a fixed pattern
103 set_grs_a5a5 ; Fill all general regs with a fixed pattern
140 set_grs_a5a5 ; Fill all general regs with a fixed pattern
177 set_grs_a5a5 ; Fill all general regs with a fixed pattern
214 set_grs_a5a5 ; Fill all general regs with a fixed pattern
250 set_grs_a5a5 ; Fill all general regs with a fixed pattern
276 set_grs_a5a5 ; Fill all general regs with a fixed pattern
314 set_grs_a5a5 ; Fill all general regs with a fixed pattern
352 set_grs_a5a5 ; Fill all general regs with a fixed pattern
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/sim/testsuite/sim/h8300/
H A Dandb.s41 set_grs_a5a5 ; Fill all general regs with a fixed pattern
62 set_grs_a5a5 ; Fill all general regs with a fixed pattern
98 set_grs_a5a5 ; Fill all general regs with a fixed pattern
135 set_grs_a5a5 ; Fill all general regs with a fixed pattern
172 set_grs_a5a5 ; Fill all general regs with a fixed pattern
209 set_grs_a5a5 ; Fill all general regs with a fixed pattern
244 set_grs_a5a5 ; Fill all general regs with a fixed pattern
270 set_grs_a5a5 ; Fill all general regs with a fixed pattern
308 set_grs_a5a5 ; Fill all general regs with a fixed pattern
346 set_grs_a5a5 ; Fill all general regs with a fixed pattern
[all...]
H A Dorb.s42 set_grs_a5a5 ; Fill all general regs with a fixed pattern
67 set_grs_a5a5 ; Fill all general regs with a fixed pattern
103 set_grs_a5a5 ; Fill all general regs with a fixed pattern
140 set_grs_a5a5 ; Fill all general regs with a fixed pattern
177 set_grs_a5a5 ; Fill all general regs with a fixed pattern
214 set_grs_a5a5 ; Fill all general regs with a fixed pattern
250 set_grs_a5a5 ; Fill all general regs with a fixed pattern
276 set_grs_a5a5 ; Fill all general regs with a fixed pattern
314 set_grs_a5a5 ; Fill all general regs with a fixed pattern
352 set_grs_a5a5 ; Fill all general regs with a fixed pattern
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/
H A Dsolib.c655 void solib_add (char *pattern, int from_tty, struct target_ops
670 solib_add (char *pattern, int from_tty, struct target_ops *target, int readsyms)
674 if (pattern)
676 char *re_err = re_comp (pattern);
685 symbols for any that match the pattern --- or any whose symbols
686 aren't already loaded, if no pattern was given. */
692 if (! pattern || re_exec (gdb->so_name))
707 if (from_tty && pattern && ! any_matches)
709 ("No loaded shared libraries match the pattern `%s'.\n", pattern);
669 solib_add(char *pattern, int from_tty, struct target_ops *target, int readsyms) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/gdb/
H A Dsolib.c655 void solib_add (char *pattern, int from_tty, struct target_ops
670 solib_add (char *pattern, int from_tty, struct target_ops *target, int readsyms)
674 if (pattern)
676 char *re_err = re_comp (pattern);
685 symbols for any that match the pattern --- or any whose symbols
686 aren't already loaded, if no pattern was given. */
692 if (! pattern || re_exec (gdb->so_name))
707 if (from_tty && pattern && ! any_matches)
709 ("No loaded shared libraries match the pattern `%s'.\n", pattern);
669 solib_add(char *pattern, int from_tty, struct target_ops *target, int readsyms) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/
H A Dsolib.c655 void solib_add (char *pattern, int from_tty, struct target_ops
670 solib_add (char *pattern, int from_tty, struct target_ops *target, int readsyms)
674 if (pattern)
676 char *re_err = re_comp (pattern);
685 symbols for any that match the pattern --- or any whose symbols
686 aren't already loaded, if no pattern was given. */
692 if (! pattern || re_exec (gdb->so_name))
707 if (from_tty && pattern && ! any_matches)
709 ("No loaded shared libraries match the pattern `%s'.\n", pattern);
669 solib_add(char *pattern, int from_tty, struct target_ops *target, int readsyms) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/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...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/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...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/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...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/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...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/avahi-0.6.31/avahi-core/
H A Drr.c335 int avahi_key_pattern_match(const AvahiKey *pattern, const AvahiKey *k) { argument
336 assert(pattern);
341 if (pattern == k)
344 return avahi_domain_equal(pattern->name, k->name) &&
345 (pattern->type == k->type || pattern->type == AVAHI_DNS_TYPE_ANY) &&
346 (pattern->clazz == k->clazz || pattern->clazz == AVAHI_DNS_CLASS_ANY);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/avahi-0.6.31/avahi-core/
H A Drr.c335 int avahi_key_pattern_match(const AvahiKey *pattern, const AvahiKey *k) { argument
336 assert(pattern);
341 if (pattern == k)
344 return avahi_domain_equal(pattern->name, k->name) &&
345 (pattern->type == k->type || pattern->type == AVAHI_DNS_TYPE_ANY) &&
346 (pattern->clazz == k->clazz || pattern->clazz == AVAHI_DNS_CLASS_ANY);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/scripts/kconfig/
H A Dlkc_proto.h22 P(sym_re_search,struct symbol **,(const char *pattern));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/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...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/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...]

Completed in 347 milliseconds

<<11121314151617181920>>