HomeSort by: relevance | last modified time | path
    Searched refs:CLAMP (Results 1 - 14 of 14) sorted by relevancy

  /src/external/mit/isl/dist/imath/
imath.c 111 static inline void CLAMP(mp_int z_) {
353 CLAMP(Z);
363 CLAMP(Z);
585 CLAMP(c);
648 CLAMP(c);
709 CLAMP(c); /* ... right here */
768 CLAMP(c); /* ... right here */
1544 CLAMP(z);
2143 CLAMP(a);
2184 CLAMP(z)
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
ntp_peer.c 63 #define MATCH_ASSOC(x, y) (AM[CLAMP((x), 0, AM_MODES)][CLAMP((y), 0, AM_MODES)])
972 * Clamp maxpoll and minpoll within NTP_MINPOLL and NTP_MAXPOLL,
973 * and further clamp minpoll less than or equal maxpoll.
975 peer->maxpoll = CLAMP(peer->maxpoll, NTP_MINPOLL, NTP_MAXPOLL);
976 peer->minpoll = CLAMP(peer->minpoll, NTP_MINPOLL, peer->maxpoll);
  /src/external/gpl3/gdb.old/dist/sim/bfin/
bfin-sim.h 369 #undef CLAMP
370 #define CLAMP(a, b, c) min (max (a, b), c)
dv-bfin_uart.c 366 nr_bytes = CLAMP (ret, 0, nr_bytes);
bfin-sim.c 872 shift = CLAMP (shift, -nbits, nbits);
894 shift = CLAMP (shift, -nbits, nbits);
4435 STORE (DREG (dst0), (CLAMP (tmp0, 0, 255) << ( 0 + (8 * HL))) |
4436 (CLAMP (tmp1, 0, 255) << (16 + (8 * HL))));
  /src/external/gpl3/gdb/dist/sim/bfin/
bfin-sim.h 369 #undef CLAMP
370 #define CLAMP(a, b, c) min (max (a, b), c)
dv-bfin_uart.c 366 nr_bytes = CLAMP (ret, 0, nr_bytes);
bfin-sim.c 872 shift = CLAMP (shift, -nbits, nbits);
894 shift = CLAMP (shift, -nbits, nbits);
4435 STORE (DREG (dst0), (CLAMP (tmp0, 0, 255) << ( 0 + (8 * HL))) |
4436 (CLAMP (tmp1, 0, 255) << (16 + (8 * HL))));
  /src/sys/kern/
tty.c 2626 #define CLAMP(x, h, l) ((x) > h ? h : ((x) < l) ? l : (x))
2629 tp->t_lowat = x = CLAMP(cps / 2, TTMAXLOWAT, TTMINLOWAT);
2631 x = CLAMP(x, TTMAXHIWAT, TTMINHIWAT);
2633 #undef CLAMP
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.h 363 /// CLAMP value between 0.0 and 1.0. NaN clamped to 0, following clamp output
365 CLAMP,
SIISelLowering.cpp 445 // Clamp modifier on add/sub
3992 .addImm(0); // clamp bit
4001 .addImm(0); // clamp bit
4214 I.addImm(0); // clamp bit for e64 encoding
9383 case AMDGPUISD::CLAMP:
9571 case AMDGPUISD::CLAMP:
9588 // FIXME: Does this apply with clamp? It's implemented with max.
9920 // If dx10_clamp is enabled, NaNs clamp to 0.0. This is the same as the
9924 return DAG.getNode(AMDGPUISD::CLAMP, SL, VT, Op0.getOperand(0));
10047 // const_a, const_b, x -> clamp is safe in all cases including signalin
    [all...]
AMDGPUISelLowering.cpp 2670 // B = clamp(1-E, 0, 13);
4231 NODE_NAME_CASE(CLAMP)
  /src/external/bsd/ntp/dist/include/
ntp.h 719 /* clamp a value within a range */
720 #define CLAMP(val, minval, maxval) \
  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress.c 1412 # define CLAMP(cParam, val) CLAMP_TYPE(cParam, val, unsigned)
1413 CLAMP(ZSTD_c_windowLog, cParams.windowLog);
1414 CLAMP(ZSTD_c_chainLog, cParams.chainLog);
1415 CLAMP(ZSTD_c_hashLog, cParams.hashLog);
1416 CLAMP(ZSTD_c_searchLog, cParams.searchLog);
1417 CLAMP(ZSTD_c_minMatch, cParams.minMatch);
1418 CLAMP(ZSTD_c_targetLength,cParams.targetLength);

Completed in 57 milliseconds