Searched defs:match (Results 1 - 25 of 64) sorted by relevance

123

/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dsearch.h49 static inline void* lfind(const void* match, const void* start, unsigned int* array_size, unsigned int elem_size, int (*cf)(const void*,const void*)) { return _lfind(match, start, array_size, elem_size, cf); } argument
50 static inline void* lsearch(const void* match, void* start, unsigned int* array_size, unsigned int elem_size, int (*cf)(const void*,const void*) ) { return _lsearch(match, start, array_size, elem_size, cf); } argument
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dsearch.h49 static inline void* lfind(const void* match, const void* start, unsigned int* array_size, unsigned int elem_size, int (*cf)(const void*,const void*)) { return _lfind(match, start, array_size, elem_size, cf); } argument
50 static inline void* lsearch(const void* match, void* start, unsigned int* array_size, unsigned int elem_size, int (*cf)(const void*,const void*) ) { return _lsearch(match, start, array_size, elem_size, cf); } argument
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dbase64.c92 char *match; local
126 match = strchr ( base64, encoded_byte );
127 if ( ! match ) {
132 decoded = ( match - base64 );
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_isenabled.py18 match = line_re.match( line ) variable
19 if match:
20 type = match.group(1)
21 pname = match.group(2)
22 fields = string.split( match.group(3) )
27 match = extensions_line_re.match( line ) variable
28 if match:
29 type = match
[all...]
H A Ddump_gen.py16 match = line_re.match( line ) variable
17 if match:
18 type = match.group(1)
19 pname = match.group(2)
20 fields = string.split( match.group(3) )
25 match = extensions_line_re.match( line ) variable
26 if match:
27 type = match
[all...]
H A Dstate_get.py19 match = line_re.match( line ) variable
20 if match:
21 type = match.group(1)
22 pname = match.group(2)
23 fields = string.split( match.group(3) )
30 match = extensions_line_re.match( line ) variable
31 if match:
32 type = match
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/
H A Dsmisc.c130 match function
H A Dgdtoaimp.h549 #define match __match_D2A macro
600 extern int match (CONST char**, CONST char*);
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/dconnect/test/
H A DTestDConnect.cpp140 PRBool match; local
141 rv = file->Equals(clone, &match);
147 printf("Files are equals? [%d]\n", match);
184 rv = file->Equals(myLocalFile, &match);
190 printf("Files are equals? [%d]\n", match);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Ddumpnode.c384 Junction *match; local
393 match=findnode1(j->p2);
394 if (match != NULL) return match;
403 Junction *findnode(int match) argument
405 Junction *findnode(match)
406 int match;
412 findnodeMatch=match;
H A Dfset2.c108 than the constraint then it is a match. The reason is that
110 where "." matches every token. Thus a match which runs out
111 of tree before constraint is a match.
485 /* (? (ALT (? ...)) s) ==> (? (? ...) s) where s = sibling, ? = match any */
902 match the guard.
2150 int match = 0; local
2190 for (match=0; match < limitMatch; match++) {
2191 if (MR_BackTraceStack.data[match] !
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
H A Drexpr.c14 * first-search is performed on the NFA (graph) to check for a match of 's'.
38 * * means match 0 or more times (can be on expression or atom)
39 * + means match 1 or more times (can be on expression or atom)
48 * match 1 or more lower-case letters (e.g. variable)
51 * match a hex number with 0x on front (e.g. 0xA1FF)
54 * match a floating point number (e.g. 3.14e21)
136 result = match(nfa.left, s);
149 static int match(NodePtr automaton,char *s) function
151 static int match(automaton, s)
158 if ( automaton == accept && *s == '\0' ) return 1; /* match */
[all...]
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgun.c164 unsigned char match[65280 + 2]; /* buffer for reversed match or gzip variable
309 /* special code to reuse last match */
324 match[stack++] = (unsigned char)final;
329 p = match + stack;
334 stack = p - match;
335 match[stack++] = (unsigned char)code;
351 outbuf[outcnt++] = match[--stack];
358 p = match + stack;
361 } while (p > match);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DPCCTSAST.cpp172 /* look for another match */
184 /* found a matching root node, try to match what's below */
198 /* no match, keep searching */
210 match(PCCTS_AST *u) function in class:PCCTS_AST
221 if ( !sib->down()->match(u->down()) ) return 0;
261 /* make sure tokens match; token of '0' means wildcard match */
270 /* match what's below if something there and current node is not wildcard */
440 * This function is like scanf(): it attempts to match a template
491 /* match th
[all...]
/vbox/src/VBox/Main/src-server/
H A DUSBDeviceFiltersImpl.cpp492 * values. Exceptions are fields whose creation time defaults don't match
983 bool match = false; local
1000 match = true;
1005 LogFlowThisFunc(("returns: %d\n", match));
1008 return match;
H A DPerformance.cpp1463 * @param pszName Name to match against the pattern.
1530 bool Filter::match(const ComPtr<IUnknown> object, const RTCString &name) const function in class:Filter
1534 //LogAleksey(("Filter::match(%p, %s)\n", static_cast<const IUnknown*> (object), name.c_str()));
1540 // Objects match, compare names
/vbox/src/VBox/Frontends/Common/VBoxKeyboard/
H A Dkeyboard.c186 unsigned match = 0; local
199 LOG_KB_2(("Attempting to match against \"%s\"\n", main_key_tab[current].comment));
204 /** Does this key match? */
206 /* search for a match in layout table */
216 match++;
249 LOG_KB_2(("Matches=%d, seq=%d\n", match, seq));
250 if ( (match > max_score)
251 || ((match == max_score) && (seq > max_seq))
253 /* best match so far */
255 max_score = match;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Glob/
H A Dglob.c20 * allow metacharacters to match leading dots in filenames.
175 static int match(Char *, Char *, Char *);
309 * unbalanced braces are passed to the match
523 * If there was no match we are going to append the pattern
779 if (!match(pathend, pattern, restpattern)) {
871 match(Char *name, Char *pat, Char *patend) function
887 if (match(name, pat, patend))
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_eeprom.c342 int match; local
365 match = ath9k_hw_get_lower_upper_index((u8)FREQ2FBIN(centers.synth_center,
369 if (match) {
H A Dath9k_eeprom_9287.c250 int match; local
260 match = ath9k_hw_get_lower_upper_index(
264 if (match) {
H A Dath9k_eeprom_def.c32 int match; local
41 match = ath9k_hw_get_lower_upper_index(
44 if (match) {
/vbox/src/libs/xpcom18a4/java/src/
H A DnsJavaXPTCStub.cpp358 PRBool match; local
362 if (NS_SUCCEEDED(iter->IsIID(&iid, &match)) && match)
/vbox/src/libs/zlib-1.2.6/
H A Ddeflate.c18 * string matches are performed only when the previous match ends. So it
22 * is used to find longer strings when a small match has been found.
96 local void check_match OF((deflate_state *s, IPos start, IPos match,
118 ush good_length; /* reduce lazy search above this match length */
119 ush max_lazy; /* do not perform lazy search above this match length */
120 ush nice_length; /* quit search above this match length */
1102 * Initialize the "longest match" routines for a new zlib stream
1134 * Set match_start to the longest match starting at the given string and
1140 * OUT assertion: the match length is not greater than s->lookahead.
1143 /* For 80x86 and 680x0, an optimized version will be provided in match
1152 register Bytef *match; /* matched string */ local
1300 register Bytef *match; /* matched string */ local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/
H A Dfsw_hfs.c492 int match; local
496 match = 0;
544 match = 1;
553 else if (!match)
/vbox/src/VBox/Devices/Graphics/shaderlib/
H A Ddirectx.c388 WARN_(d3d_caps)("PBO test failed, read back data doesn't match original.\n");
752 BOOL (*match)(const struct wined3d_gl_info *gl_info, const char *gl_renderer, member in struct:driver_quirk
863 if (!quirk_table[i].match(gl_info, gl_renderer, gl_vendor, card_vendor, device)) continue;
1319 * Beware: renderer string do not match exact card model,
1516 * Beware: renderer string do not match exact card model,

Completed in 186 milliseconds

123