HomeSort by: relevance | last modified time | path
    Searched refs:hot (Results 1 - 25 of 71) sorted by relevancy

1 2 3

  /src/tests/usr.bin/xlint/lint1/
gcc_attribute_label.c 18 goto hot;
23 hot:
  /src/sbin/fsck/
fsutil.c 72 static int hot = 0; variable
96 return hot;
195 hot = 0;
214 hot++;
  /src/sys/arch/powerpc/conf/
kern.ldscript 23 *(.text.hot .text.hot.*)
kern64.ldscript 17 *(.text.hot .text.hot.*)
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/allwinner/
sun8i-h3.dtsi 251 cpu_hot_trip: cpu-hot {
257 cpu_very_hot_trip: cpu-very-hot {
265 cpu-hot-limit {
sun8i-a83t.dtsi 1214 cpu0_hot: cpu-hot {
1220 cpu0_very_hot: cpu-very-hot {
1228 cpu-hot-limit {
1244 cpu1_hot: cpu-hot {
1250 cpu1_very_hot: cpu-very-hot {
1258 cpu-hot-limit {
  /src/lib/libc/arch/arm/
SYS.h 37 #define _TEXT_SECTION .section .text.hot, "ax"
  /src/sys/dev/sun/
fbio.h 192 struct fbcurpos hot; /* cursor's hot spot */ member in struct:fbcursor
  /src/sys/arch/amiga/dev/
grfioctl.h 181 struct grf_position hot; /* sprite hot spot */ member in struct:grf_spriteinfo
grf_cl.c 920 rx = data->x - cl_cursprite.hot.x;
921 ry = data->y - cl_cursprite.hot.y;
929 prx = cl_cursprite.pos.x - cl_cursprite.hot.x;
930 pry = cl_cursprite.pos.y - cl_cursprite.hot.y;
1014 cl_cursprite.hot = data->hot;
grf_rt.c 1179 info->hot.x = vgar (ba, SEQ_ID_CURSOR_X_INDEX) & 0x1f;
1180 info->hot.y = vgar (ba, SEQ_ID_CURSOR_Y_INDEX) & 0x7f;
1238 vgaw (ba, SEQ_ID_CURSOR_X_INDEX, info->hot.x & 0x1f);
1239 vgaw (ba, SEQ_ID_CURSOR_Y_INDEX, info->hot.y & 0x7f);
  /src/sys/arch/atari/dev/
grfioctl.h 177 struct grf_position hot; /* sprite hot spot */ member in struct:grf_spriteinfo
  /src/sys/dev/acpi/
acpi_tz.c 56 #define ATZ_F_HOT 0x02 /* zone hot */
88 uint32_t hot; member in struct:acpitz_zone
343 if (sc->sc_zone.hot != ATZ_TMP_INVALID && tmp >= sc->sc_zone.hot)
363 aprint_debug_dev(dv, "zone went hot, %s C\n",
531 (void)acpitz_get_integer(dv, "_HOT", &sc->sc_zone.hot);
547 acpitz_sane_temp(&sc->sc_zone.hot);
561 if (sc->sc_zone.hot != ATZ_TMP_INVALID) {
563 acpitz_celcius_string(sc->sc_zone.hot));
844 if (sc->sc_zone.hot != ATZ_TMP_INVALID)
    [all...]
  /src/sys/arch/sparc64/sparc64/
netbsd32_machdep.c 631 struct fbcurpos hot; /* cursor's hot spot */ member in struct:netbsd32_fbcursor
691 p->hot = s32p->hot;
730 s32p->hot = p->hot;
  /src/external/gpl3/gcc/dist/gcc/
ipa-profile.cc 28 The information is used to set hot/cold thresholds.
39 .text.unlikely/.text.hot/.text.startup/.text.exit subsections). */
614 fprintf (dump_file, " Called by %s that is normal or hot\n",
624 /* Return ture if NODE contains hot calls. */
683 /* With profile we can decide on hot/normal based on count. */
686 bool hot = false; local
689 hot = true;
690 if (!hot)
691 hot |= contains_hot_call_p (node);
692 if (hot)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
ipa-profile.cc 28 The information is used to set hot/cold thresholds.
39 .text.unlikely/.text.hot/.text.startup/.text.exit subsections). */
613 fprintf (dump_file, " Called by %s that is normal or hot\n",
623 /* Return ture if NODE contains hot calls. */
682 /* With profile we can decide on hot/normal based on count. */
685 bool hot = false; local
688 hot = true;
689 if (!hot)
690 hot |= contains_hot_call_p (node);
691 if (hot)
    [all...]
  /src/sys/uvm/
uvm_pdpolicy_clockpro.c 780 bool hot; local
790 hot = false;
793 hot = nonresident_pagelookupremove(pg);
794 if (hot) {
815 if (hot) {
824 } else if (hot) {
917 dump("hot called");
987 * stop at a hot page so that no cold pages in test period
988 * have larger recency than any hot pages.
992 dump("hot done")
    [all...]
  /src/sys/compat/netbsd32/
netbsd32_ioctl.c 502 c->hot.x = c32->hot.x;
503 c->hot.y = c32->hot.y;
980 c32->hot.x = c->hot.x;
981 c32->hot.y = c->hot.y;
  /src/sys/arch/evbmips/stand/sbmips/common/
boot.ldscript 85 *(.text.hot .text.hot.*)
  /src/sys/arch/sbmips/stand/common/
boot.ldscript 85 *(.text.hot .text.hot.*)
  /src/sys/arch/vax/vsa/
smg.c 529 wdc->hot.x = ss->ss_curhot.x;
530 wdc->hot.y = ss->ss_curhot.y;
593 ss->ss_curhot.x = wdc->hot.x;
594 ss->ss_curhot.y = wdc->hot.y;
  /src/sys/dev/ic/
igsfb.c 910 struct wsdisplay_curpos pos, hot; local
964 /* enforce that the hot spot is within sprite bounds */
966 hot = p->hot; /* local copy we can write to */
974 nhot = (v & WSDISPLAY_CURSOR_DOHOT) ? &hot : &cc->cc_hot;
988 cc->cc_hot = hot; /* local copy, possibly corrected */
bt485.c 244 data->curhot.x = data->curhot.y = 0; /* hot spot at 0,0 */
364 data->curhot = cursorp->hot;
409 cursorp->hot = data->curhot; /* DOHOT */
  /src/external/apache2/llvm/dist/llvm/utils/vim/syntax/
llvm.vim 97 \ hot
  /src/sys/dev/sbus/
agten.c 939 agten_write_dac(sc, IBM561_CMD, cur->hot.x);
940 agten_write_dac(sc, IBM561_CMD, cur->hot.y);
983 agten_write_dac(sc, IBM561_CMD, cur->hot.x);
984 agten_write_dac(sc, IBM561_CMD, cur->hot.y);

Completed in 69 milliseconds

1 2 3