Searched defs:best (Results 1 - 6 of 6) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/NetUtil/ |
H A D | inet_ntop.c | 140 struct { int base, len; } best, cur; local 156 best.base = -1; 157 best.len = 0; 168 if (best.base == -1 || cur.len > best.len) 169 best = cur; 175 if (best.base == -1 || cur.len > best.len) 176 best = cur; 178 if (best [all...] |
/vbox/src/VBox/GuestHost/OpenGL/spu_loader/ |
H A D | choosevisual.c | 281 XVisualInfo templateVis, *best; local 304 best = vis + 0; 307 if (vis[i].depth > best->depth && 308 vis[i].bits_per_rgb > best->bits_per_rgb ) 309 best = vis + i; 312 if (best) 320 templateVis.visualid = best->visualid; 322 best = XGetVisualInfo(dpy, templateFlags, &templateVis, &count); 325 return best;
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/80211/ |
H A D | net80211.c | 90 /** List of best beacons for each network found so far */ 1357 * the best-signal one) in order to release the probe context. A 1531 * Finish probe of 802.11 networks, returning best-signal network found 1543 struct net80211_wlan *best = NULL, *wlan; local 1549 if ( ! best || best->signal < wlan->signal ) 1550 best = wlan; 1553 if ( best ) 1554 list_del ( &best->list ); 1568 return best; [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/ |
H A D | ath9k_ar9003_eeprom.c | 3153 static void ar9300_comp_hdr_unpack(u8 *best, int *code, int *reference, argument 3158 value[0] = best[0]; 3159 value[1] = best[1]; 3160 value[2] = best[2]; 3161 value[3] = best[3]; 3833 /* identify best lower and higher x calibration measurement */ 3840 /* new best higher x measurement */ 3849 /* new best lower x measurement */ 4385 /* identify best lower and higher frequency calibration measurement */ 4403 * new best highe [all...] |
/vbox/src/libs/libxml2-2.6.31/ |
H A D | relaxng.c | 8117 * validation error, log the message for the "best" one 9275 int best = -1; local 9288 best = j; 9294 best = j; 9301 best = j; 9306 best = j; 9315 if (best != -1) { 9316 oldstate = ctxt->states->tabState[best]; 9317 ctxt->states->tabState[best] = NULL; 9530 * Find the "best" stat 9542 int best = -1; local 9579 int best; local [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/ |
H A D | dtrace.c | 7064 int len, rc, best = INT_MAX, nmatched = 0; local 7094 (len = dtrace_hash_collisions(dtrace_bymod, &template)) < best) { 7095 best = len; 7100 (len = dtrace_hash_collisions(dtrace_byfunc, &template)) < best) { 7101 best = len; 7106 (len = dtrace_hash_collisions(dtrace_byname, &template)) < best) { 7107 best = len;
|
Completed in 2088 milliseconds