Searched defs:shift (Results 1 - 4 of 4) sorted by relevance

/systemd/src/boot/efi/
H A Dconsole.c109 UINT32 shift = 0; local
114 shift |= EFI_CONTROL_PRESSED;
116 shift |= EFI_ALT_PRESSED;
120 keypress = KEYPRESS(shift, keydata.Key.ScanCode, keydata.Key.UnicodeChar);
/systemd/src/basic/
H A Djson.c384 double x = 0.0, y = 0.0, exponent = 0.0, shift = 1.0; local
430 shift = 10.0 * shift;
457 ret->real = ((negative ? -1.0 : 1.0) * (x + (y / shift))) * exp10((exponent_negative ? -1.0 : 1.0) * exponent);
/systemd/src/libsystemd/sd-bus/
H A Dbus-message.c3038 size_t psz, shift; local
3055 shift = part->memfd_offset - ((part->memfd_offset / page_size()) * page_size());
3056 psz = PAGE_ALIGN(part->size + shift);
3059 p = mmap(NULL, psz, PROT_READ, MAP_PRIVATE, part->memfd, part->memfd_offset - shift);
3070 part->data = (uint8_t*) p + shift;
/systemd/src/nspawn/
H A Dnspawn.c274 log_error("--private-users with automatic UID shift may not be combined with custom root mounts.");
801 const char *range, *shift; local
808 shift = buffer;
816 shift = optarg;
818 if (parse_uid(shift, &arg_uid_shift) < 0) {
2730 return log_error_errno(errno, "Failed to send UID shift: %m");
2732 log_error("Short write while sending UID shift.");
3346 r = log_error_errno(errno, "Failed to create uid shift socket pair: %m");
3450 r = log_error_errno(errno, "Failed to read UID shift: %m");
3454 log_error("Short read while reading UID shift
[all...]

Completed in 36 milliseconds