HomeSort by: relevance | last modified time | path
    Searched defs:threshold (Results 1 - 25 of 29) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_schedule.h 60 int threshold; member in struct:nir_schedule_options
  /xsrc/external/mit/font-util/dist/
bdftruncate.c 34 * a threshold code value are stored unencoded.
53 static int parse_threshold(const char *str, unsigned long *threshold);
56 parse_threshold(const char *str, unsigned long *threshold)
69 *threshold = strtoul(str, &end_ptr, base);
70 if (errno != 0 || *threshold == 0)
76 process_line(const char *line, int removewide, unsigned long threshold)
88 if (enc >= threshold || (removewide && iswide(enc))) {
101 threshold);
126 unsigned long threshold; local
148 if (parse_threshold(*argv, &threshold)) {
    [all...]
  /xsrc/external/mit/xorg-server/dist/Xi/
chgfctl.c 252 int threshold; local
254 threshold = f->thresh;
255 if (threshold == -1)
256 pctrl.threshold = defaultPointerControl.threshold;
257 else if (threshold < 0) {
258 client->errorValue = threshold;
262 pctrl.threshold = threshold;
  /xsrc/external/mit/xorg-server.old/dist/Xi/
chgfctl.c 251 int threshold; local
253 threshold = f->thresh;
254 if (threshold == -1)
255 pctrl.threshold = defaultPointerControl.threshold;
256 else if (threshold < 0) {
257 client->errorValue = threshold;
260 pctrl.threshold = threshold;
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_cb_readpixels.c 374 unsigned threshold = MAX2(1, strb->Base.Width * strb->Base.Height / 8); local
376 if (st->readpix_cache.hits < threshold) {
  /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
mir.c 252 unsigned threshold = mir_components_for_bits(type_size) >> 1; local
257 /* Did we hit the threshold? */
258 return (zeroes >= threshold) ? threshold : 0;
  /xsrc/external/mit/MesaLib.old/dist/src/glx/
dri_common.c 56 int threshold = _LOADER_WARNING; local
62 threshold = _LOADER_FATAL;
64 threshold = _LOADER_DEBUG;
68 if (level <= threshold) {
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_cb_readpixels.c 361 unsigned threshold = MAX2(1, strb->Base.Width * strb->Base.Height / 8); local
363 if (st->readpix_cache.hits < threshold) {
  /xsrc/external/mit/freetype/dist/src/pshinter/
pshglob.c 411 /* The blue threshold is the font units distance under */
420 FT_Int threshold = blues->blue_shift; local
423 while ( threshold > 0 && FT_MulFix( threshold, scale ) > 32 )
424 threshold--;
426 blues->blue_threshold = threshold;
pshalgo.c 1414 FT_Int threshold,
1449 if ( d < threshold && -d < threshold )
1469 if ( d < threshold && -d < threshold )
1506 if ( d < threshold && -d < threshold )
1523 if ( d < threshold && -d < threshold )
1578 FT_Int threshold; local
    [all...]
  /xsrc/external/mit/xf86-input-ws/dist/src/
ws.h 48 int num, den, threshold; /* relative accel params */ member in struct:WSDevice
  /xsrc/external/mit/MesaLib/dist/src/glx/
glxext.c 79 int threshold = _LOADER_WARNING; local
85 threshold = _LOADER_FATAL;
87 threshold = _LOADER_DEBUG;
91 if (level <= threshold) {
  /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/
vn_instance.c 462 const size_t threshold = instance->experimental.largeRing local
465 return vn_cs_encoder_get_len(cs) <= threshold;
  /xsrc/external/mit/xf86-video-ark/dist/src/
ark_driver.c 802 /* set display FIFO threshold */
804 int threshold; local
816 threshold = 4;
819 tmp |= threshold;
823 threshold = 12;
825 threshold = 8;
827 threshold = 4;
830 tmp |= (threshold & 0x0e) >> 1;
831 if (threshold & 0x01)
833 if (threshold & 0x10
    [all...]
  /xsrc/external/mit/freetype/dist/src/autofit/
afcjk.c 1303 FT_Pos best_dist0; /* initial threshold */
1306 /* compute the initial threshold as a fraction of the EM size */
1596 /* with a different threshold */
1695 FT_Pos threshold = 64; local
1704 threshold = 64 - AF_LIGHT_MODE_MAX_HORZ_GAP;
1706 threshold = 64 - AF_LIGHT_MODE_MAX_VERT_GAP;
1711 threshold = 64 - AF_LIGHT_MODE_MAX_HORZ_GAP / 3;
1713 threshold = 64 - AF_LIGHT_MODE_MAX_VERT_GAP / 3;
1735 if ( cur_len <= threshold )
1748 if ( threshold < 64
    [all...]
aflatin.c 594 /* that are not on the same Y coordinate, then threshold */
652 /* threshold. This ensures that small bumps in the outline */
663 /* heuristic threshold value */
674 /* heuristic threshold value */
843 /* `on' point is larger than a heuristic threshold */
1225 FT_Pos threshold; local
1234 threshold = 40;
1241 threshold = 52;
1243 fitted = ( scaled + threshold ) & ~63;
2145 * corresponding threshold in font units
    [all...]
aflatin2.c 310 /* same Y coordinate. Threshold the `closeness'... */
576 FT_Pos threshold; local
585 threshold = 40;
592 threshold = 52;
594 fitted = ( scaled + threshold ) & ~63;
1419 FT_Pos best_dist0; /* initial threshold */
1422 /* compute the initial threshold as a fraction of the EM size */
1761 /* with a different threshold */
  /xsrc/external/mit/freetype/dist/src/truetype/
ttinterp.h 221 FT_F26Dot6 threshold; member in struct:TT_ExecContextRec_
  /xsrc/external/mit/libdrm/dist/include/drm/
tegra_drm.h 131 * Threshold value for which to wait.
386 * Threshold value for which to check.
492 * The threshold of the syncpoint associated with this job after it
844 * commands. The threshold is calculated relative to the start of the job.
1030 * @threshold: [in]
1032 * Threshold to wait for.
1034 __u32 threshold; member in struct:drm_tegra_syncpoint_wait
  /xsrc/external/mit/xf86-input-vmmouse/dist/src/
xf86OSmouse.h 217 int threshold; /* acceleration */ member in struct:_MouseDevRec
  /xsrc/external/mit/xorg-server.old/dist/include/
input.h 181 int num, den, threshold; member in struct:__anon10828
  /xsrc/external/mit/xset/dist/
xset.c 130 static void set_mouse(Display *dpy, int acc_num, int acc_denom, int threshold);
436 /* Set pointer (mouse) settings: Acceleration and Threshold. */
440 int threshold = SERVER_DEFAULT; local
443 set_mouse(dpy, acc_num, acc_denom, threshold);
454 set_mouse(dpy, acc_num, acc_denom, threshold);
459 threshold = atoi(arg); /* Set threshold as user specified. */
463 set_mouse(dpy, acc_num, acc_denom, threshold);
1039 set_mouse(Display *dpy, int acc_num, int acc_denom, int threshold)
1045 if (threshold == DONT_CHANGE
1259 int acc_num, acc_denom, threshold; local
    [all...]
  /xsrc/external/mit/libXi/dist/include/X11/extensions/
XInput.h 534 int threshold; member in struct:__anon5864
608 int threshold; member in struct:__anon5870
  /xsrc/external/mit/xorg-server/dist/include/
input.h 217 int num, den, threshold; member in struct:__anon10236
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
aco_optimizer.cpp 3632 const uint32_t threshold = 4; local
3758 * uses below threshold
3760 if (literal_uses < threshold || literal_idx == 2) {
3904 if (literal_id && literal_uses < threshold &&

Completed in 46 milliseconds

1 2