Home
last modified time | relevance | path

Searched full:degrees (Results 1 – 25 of 466) sorted by relevance

12345678910>>...19

/OK3568_Linux_fs/kernel/include/linux/
H A Dfixp-arith.h42 * __fixp_sin32() returns the sin of an angle in degrees
44 * @degrees: angle, in degrees, from 0 to 360.
48 static inline s32 __fixp_sin32(int degrees) in __fixp_sin32() argument
53 if (degrees > 180) { in __fixp_sin32()
55 degrees -= 180; in __fixp_sin32()
57 if (degrees > 90) in __fixp_sin32()
58 degrees = 180 - degrees; in __fixp_sin32()
60 ret = sin_table[degrees]; in __fixp_sin32()
66 * fixp_sin32() returns the sin of an angle in degrees
68 * @degrees: angle, in degrees. The angle can be positive or negative
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Dfixp-arith.h41 * __fixp_sin32() returns the sin of an angle in degrees
43 * @degrees: angle, in degrees, from 0 to 360.
47 static inline s32 __fixp_sin32(int degrees) in __fixp_sin32() argument
52 if (degrees > 180) { in __fixp_sin32()
54 degrees -= 180; in __fixp_sin32()
56 if (degrees > 90) in __fixp_sin32()
57 degrees = 180 - degrees; in __fixp_sin32()
59 ret = sin_table[degrees]; in __fixp_sin32()
65 * fixp_sin32() returns the sin of an angle in degrees
67 * @degrees: angle, in degrees. The angle can be positive or negative
[all …]
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Dds1621.rst68 Fahrenheit range of -67 to +257 degrees with 0.9 steps. If polarity
81 of up to +/- 0.5 degrees even when compared against precise temperature
107 and 80 degrees respectively).
125 - DS1621: +/- 0.5 degree Celsius (from 0 to +70 degrees)
126 - DS1625: +/- 0.5 degree Celsius (from 0 to +70 degrees)
127 - DS1631: +/- 0.5 degree Celsius (from 0 to +70 degrees)
128 - DS1721: +/- 1.0 degree Celsius (from -10 to +85 degrees)
129 - DS1731: +/- 1.0 degree Celsius (from -10 to +85 degrees)
146 0 0 9 bits, 0.5 degrees Celsius
147 1 0 10 bits, 0.25 degrees Celsius
[all …]
H A Dlm77.rst37 was 80 degrees C, and the hysteresis was 75 degrees C, and you change
38 the critical limit to 90 degrees C, then the hysteresis will
39 automatically change to 85 degrees C.
H A Dk8temp.rst42 Temperatures are measured in degrees Celsius and measurement resolution is
45 206 degrees C.
61 70 degrees C. The rule of the thumb -> CPU temperature should not cross
62 60 degrees C too much.
H A Demc1403.rst72 was 80 degrees C, and the hysteresis was 75 degrees C, and you change
73 the critical limit to 90 degrees C, then the hysteresis will
74 automatically change to 85 degrees C.
H A Dtmp513.rst34 The temperatures are measured in degrees Celsius with a range of
35 -40 to + 125 degrees with a resolution of 0.0625 degree C.
39 hysteresis value. The hysteresis is in degrees Celsius with a range of
40 0 to 127.5 degrees with a resolution of 0.5 degree.
H A Dgl518sm.rst43 Temperatures are measured in degrees Celsius. An alarm goes off while the
46 situation. Measurements are guaranteed between -10 degrees and +110
47 degrees, with a accuracy of +/-3 degrees.
H A Dw83773g.rst26 Temperature is measured in degrees Celsius.
28 range of -40 to +125 degrees Celsius (for local sensor) and -40 to +127
29 degrees Celsius (for remote sensors).
H A Dlm83.rst85 All temperature values are given in degrees Celsius. Local temperature
86 is given within a range of 0 to +85 degrees. Remote temperatures are
87 given within a range of 0 to +125 degrees. Resolution is 1.0 degree,
88 accuracy is guaranteed to 3.0 degrees (see the datasheet for more
H A Dw83l785ts.rst24 theoretically defined as 85 or 100 degrees C through a combination
27 degrees C. The datasheet is rather poor and obviously inaccurate
30 All temperature values are given in degrees Celsius. Resolution
/OK3568_Linux_fs/kernel/drivers/clk/meson/
H A Dclk-phase.c26 static unsigned int meson_clk_degrees_to_val(int degrees, unsigned int width) in meson_clk_degrees_to_val() argument
28 unsigned int val = DIV_ROUND_CLOSEST(degrees, phase_step(width)); in meson_clk_degrees_to_val()
31 * This last calculation is here for cases when degrees is rounded in meson_clk_degrees_to_val()
48 static int meson_clk_phase_set_phase(struct clk_hw *hw, int degrees) in meson_clk_phase_set_phase() argument
54 val = meson_clk_degrees_to_val(degrees, phase->ph.width); in meson_clk_phase_set_phase()
107 static int meson_clk_triphase_set_phase(struct clk_hw *hw, int degrees) in meson_clk_triphase_set_phase() argument
113 val = meson_clk_degrees_to_val(degrees, tph->ph0.width); in meson_clk_triphase_set_phase()
164 static int meson_sclk_ws_inv_set_phase(struct clk_hw *hw, int degrees) in meson_sclk_ws_inv_set_phase() argument
170 val = meson_clk_degrees_to_val(degrees, tph->ph.width); in meson_sclk_ws_inv_set_phase()
/OK3568_Linux_fs/kernel/drivers/clk/rockchip/
H A Dclk-mmc-phase.c51 u16 degrees; in rockchip_mmc_get_phase() local
60 degrees = (raw_value & ROCKCHIP_MMC_DEGREE_MASK) * 90; in rockchip_mmc_get_phase()
63 /* degrees/delaynum * 1000000 */ in rockchip_mmc_get_phase()
69 degrees += DIV_ROUND_CLOSEST(delay_num * factor, 1000000); in rockchip_mmc_get_phase()
72 return degrees % 360; in rockchip_mmc_get_phase()
75 static int rockchip_mmc_set_phase(struct clk_hw *hw, int degrees) in rockchip_mmc_set_phase() argument
101 nineties = degrees / 90; in rockchip_mmc_set_phase()
102 remainder = (degrees % 90); in rockchip_mmc_set_phase()
119 * degrees off from what we think we're making. That's OK in rockchip_mmc_set_phase()
142 clk_hw_get_name(hw), degrees, delay_num, in rockchip_mmc_set_phase()
H A Dclk-inverter.c35 static int rockchip_inv_set_phase(struct clk_hw *hw, int degrees) in rockchip_inv_set_phase() argument
40 if (degrees % 180 == 0) { in rockchip_inv_set_phase()
41 val = !!degrees; in rockchip_inv_set_phase()
44 __func__, degrees, clk_hw_get_name(hw)); in rockchip_inv_set_phase()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeocameracapabilities.cpp90 …minimumFieldOfView_(45.0), // Defaulting to a fixed FOV of 45 degrees. Too large FOVs cause the l… in QGeoCameraCapabilitiesPrivate()
349 The value is in degrees where 0 is equivalent to 90 degrees between
361 The value is in degrees where 0 is equivalent to 90 degrees between
372 The value is in degrees where 0 is equivalent to 90 degrees between
384 The value is in degrees where 0 is equivalent to 90 degrees between
394 The value is in degrees and is clamped against a [1, 179] range.
406 The value is in degrees.
417 The value is in degrees and is clamped against a [1, 179] range.
429 The value is in degrees.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/geoclue2/
H A Dorg.freedesktop.GeoClue2.Location.xml23 The latitude of the location, in degrees.
30 The longitude of the location, in degrees.
59 The heading direction in degrees with respect to North direction, in
60 clockwise order. That means North becomes 0 degree, East: 90 degrees,
61 South: 180 degrees, West: 270 degrees and so on. When unknown,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeorectangle.cpp70 center coordinate, the width of the geo rectangle in degrees and the height
71 of the geo rectangle in degrees.
136 \brief This property holds the width of this geo rectangle in degrees.
147 degrees and the rightmost longitude of the geo rectangle is set to 180.0
148 degrees.
158 \brief This property holds the height of this geo rectangle in degrees.
215 width in degrees of \a degreesWidth and a height in degrees of \a degreesHeight.
489 Sets the width of this geo rectangle in degrees to \a degreesWidth.
523 Returns the width of this geo rectangle in degrees.
544 Sets the height of this geo rectangle in degrees to \a degreesHeight.
[all …]
H A Dqgeocoordinate.cpp143 \value Degrees Returns a string representation of the coordinates in decimal degrees format.
144 …Hemisphere Returns a string representation of the coordinates in decimal degrees format, using 'N'…
145 …\value DegreesMinutes Returns a string representation of the coordinates in degrees-minutes format.
146 …utesWithHemisphere Returns a string representation of the coordinates in degrees-minutes format, u…
147 …\value DegreesMinutesSeconds Returns a string representation of the coordinates in degrees-minutes…
148 …ondsWithHemisphere Returns a string representation of the coordinates in degrees-minutes-seconds f…
155 \brief This property holds the latitude in decimal degrees.
173 \brief This property holds the longitude in decimal degrees.
304 The longitude will be ignored if the latitude is +/- 90 degrees.
353 Returns the latitude, in decimal degrees. The return value is undefined
[all …]
/OK3568_Linux_fs/kernel/drivers/mmc/host/
H A Ddw_mmc-hi3798cv200.c69 static const int degrees[] = { 0, 45, 90, 135, 180, 225, 270, 315 }; in dw_mci_hi3798cv200_execute_tuning() local
77 for (i = 0; i < ARRAY_SIZE(degrees); i++) { in dw_mci_hi3798cv200_execute_tuning()
78 clk_set_phase(priv->sample_clk, degrees[i]); in dw_mci_hi3798cv200_execute_tuning()
104 fall_point = ARRAY_SIZE(degrees) - 1; in dw_mci_hi3798cv200_execute_tuning()
107 (ARRAY_SIZE(degrees) - 1)) in dw_mci_hi3798cv200_execute_tuning()
110 i = (raise_point + ARRAY_SIZE(degrees) - 1) / 2; in dw_mci_hi3798cv200_execute_tuning()
115 clk_set_phase(priv->sample_clk, degrees[i]); in dw_mci_hi3798cv200_execute_tuning()
117 raise_point, fall_point, degrees[i]); in dw_mci_hi3798cv200_execute_tuning()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/dispnv04/
H A Doverlay.c70 * sin(x degrees) ~= 4 x (180 - x) / (40500 - x (180 - x) )
75 sin_mul(int degrees, int factor) in sin_mul() argument
77 if (degrees > 180) { in sin_mul()
78 degrees -= 180; in sin_mul()
81 return factor * 4 * degrees * (180 - degrees) / in sin_mul()
82 (40500 - degrees * (180 - degrees)); in sin_mul()
87 cos_mul(int degrees, int factor) in cos_mul() argument
89 return sin_mul((degrees + 90) % 360, factor); in cos_mul()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/demo/include/
H A DRockchipRgaMacro.h20 /* rotate source image 90 degrees clockwise */ …
22 /* rotate source image 180 degrees */ …
24 /* rotate source image 270 degrees clockwise */ …
/OK3568_Linux_fs/kernel/arch/powerpc/platforms/cell/
H A Dcbe_thermal.c8 * The accuracy is 2 degrees, starting from 65 up to 125 degrees celsius
308 * 08 - dynamic throttling starts if over 80 degrees in init_default_values()
309 * 03 - dynamic throttling ceases if below 70 degrees */ in init_default_values()
312 * 10 - full stopped when over 96 degrees in init_default_values()
313 * 08 - dynamic throttling starts if over 80 degrees in init_default_values()
314 * 03 - dynamic throttling ceases if below 70 degrees in init_default_values()
/OK3568_Linux_fs/kernel/drivers/clk/hisilicon/
H A Dclk-hisi-phase.c54 int degrees) in hisi_phase_degrees_to_regval() argument
59 if (phase->phase_degrees[i] == degrees) in hisi_phase_degrees_to_regval()
65 static int hisi_clk_set_phase(struct clk_hw *hw, int degrees) in hisi_clk_set_phase() argument
72 regval = hisi_phase_degrees_to_regval(phase, degrees); in hisi_clk_set_phase()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/media/
H A Dvideo-interfaces.txt89 degrees between two reference systems, one relative to the camera module, and
176 degrees as a number in the range [0, 360[.
180 0 degrees camera rotation:
216 90 degrees camera rotation:
240 180 degrees camera rotation:
258 270 degrees camera rotation:
308 0 degrees, no rotation correction needs to be applied to the resulting
325 with 'Rp' being rotated 180 degrees relatively to 'Rc':
344 The image once captured to memory will then be rotated by 180 degrees:
358 A software rotation correction of 180 degrees should be applied to
[all …]
/OK3568_Linux_fs/kernel/drivers/clk/sunxi-ng/
H A Dccu_phase.c56 static int ccu_phase_set_phase(struct clk_hw *hw, int degrees) in ccu_phase_set_phase() argument
85 if (degrees != 180) { in ccu_phase_set_phase()
96 * formula to get the outphasing in degrees is deg = in ccu_phase_set_phase()
105 delay = DIV_ROUND_CLOSEST(degrees, step); in ccu_phase_set_phase()

12345678910>>...19