Home
last modified time | relevance | path

Searched refs:width (Results 1 – 8 of 8) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_printf/
Dprintf.c181 unsigned int width, unsigned int flags) { in _out_rev() argument
186 for (size_t i = len; i < width; i++) { in _out_rev()
198 while (idx - start_idx < width) { in _out_rev()
209 bool negative, unsigned int base, unsigned int prec, unsigned int width, in _ntoa_format() argument
213 … if (width && (flags & FLAGS_ZEROPAD) && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ntoa_format()
214 width--; in _ntoa_format()
219 while ((flags & FLAGS_ZEROPAD) && (len < width) && (len < PICO_PRINTF_NTOA_BUFFER_SIZE)) { in _ntoa_format()
226 if (!(flags & FLAGS_PRECISION) && len && ((len == prec) || (len == width))) { in _ntoa_format()
254 return _out_rev(out, buffer, idx, maxlen, buf, len, width, flags); in _ntoa_format()
260 … unsigned long base, unsigned int prec, unsigned int width, unsigned int flags) { in _ntoa_long() argument
[all …]
/hal_rpi_pico-latest/tools/pioasm/gen/
Dlocation.h123 operator+= (position& res, position::counter_type width)
125 res.columns (width);
131 operator+ (position res, position::counter_type width)
133 return res += width;
138 operator-= (position& res, position::counter_type width)
140 return res += -width;
145 operator- (position res, position::counter_type width)
147 return res -= width;
249 operator+= (location& res, location::counter_type width)
251 res.columns (width);
[all …]
/hal_rpi_pico-latest/docs/
Dmain.css28 width: 275px;
40 @media (max-width: 1012px) {
46 width: 450px;
51 @media (max-width: 767px) {
53 width: calc(100% - 50px);
57 @media (max-width: 1012px) {
70 @media (max-width: 1012px) {
75 @media (max-width: 767px) {
Dstyles.css5 @media (max-width: 1012px) {
14 @media (max-width: 1012px) {
18 max-width: 35px;
26 width: 100%;
29 @media (max-width: 767px) {
44 @media (max-width: 1012px) {
71 width: 100%;
77 width: 100%;
94 width: 100%;
192 @media (max-width: 1012px) {
[all …]
Dlogo-mobile.svg1 <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="50mm" height="50mm"…
Dnormalise.css326 max-width: 100%; /* 1 */
/hal_rpi_pico-latest/src/rp2350/boot_stage2/
Dpad_checksum14 def bitrev(x, width): argument
15 return int("{:0{w}b}".format(x, w=width)[::-1], 2)
/hal_rpi_pico-latest/src/rp2040/boot_stage2/
Dpad_checksum16 def bitrev(x, width): argument
17 return int("{:0{w}b}".format(x, w=width)[::-1], 2)