HomeSort by: relevance | last modified time | path
    Searched defs:trip (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
therm.h 58 struct nvbios_therm_trip_point trip[NVKM_TEMP_FAN_TRIP_MAX]; member in struct:nvbios_therm_fan
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/
nouveau_nvkm_subdev_therm_base.c 45 struct nvbios_therm_trip_point *trip = therm->fan->bios.trip, local
51 /* look for the trip point corresponding to the current temperature */
54 if (temp >= trip[i].temp)
55 cur_trip = &trip[i];
  /src/external/gpl3/gcc/dist/gcc/fortran/
array.cc 1725 mpz_t trip; local
1732 mpz_init (trip);
1763 /* Calculate the trip count of the loop. */
1764 mpz_sub (trip, end->value.integer, start->value.integer);
1765 mpz_add (trip, trip, step->value.integer);
1766 mpz_tdiv_q (trip, trip, step->value.integer);
1774 while (mpz_sgn (trip) > 0)
1780 mpz_sub_ui (trip, trip, 1)
    [all...]
resolve.cc 17438 mpz_t trip; local
17444 mpz_init (trip);
17482 mpz_set (trip, end->value.integer);
17483 mpz_sub (trip, trip, start->value.integer);
17484 mpz_add (trip, trip, step->value.integer);
17486 mpz_div (trip, trip, step->value.integer);
17494 while (mpz_cmp_ui (trip, 0) > 0
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
array.cc 1712 mpz_t trip; local
1719 mpz_init (trip);
1750 /* Calculate the trip count of the loop. */
1751 mpz_sub (trip, end->value.integer, start->value.integer);
1752 mpz_add (trip, trip, step->value.integer);
1753 mpz_tdiv_q (trip, trip, step->value.integer);
1761 while (mpz_sgn (trip) > 0)
1767 mpz_sub_ui (trip, trip, 1)
    [all...]
resolve.cc 16595 mpz_t trip; local
16601 mpz_init (trip);
16639 mpz_set (trip, end->value.integer);
16640 mpz_sub (trip, trip, start->value.integer);
16641 mpz_add (trip, trip, step->value.integer);
16643 mpz_div (trip, trip, step->value.integer);
16651 while (mpz_cmp_ui (trip, 0) > 0
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_display.c 5909 u16 trip = 0; local
5926 trip = PS_PHASE_TRIP;
5928 return ((phase >> 2) & PS_PHASE_MASK) | trip;
18362 * ports even it doesn't enable the port. This would trip

Completed in 54 milliseconds