Home
last modified time | relevance | path

Searched full:remaining (Results 1 – 25 of 1336) sorted by relevance

12345678910>>...54

/openbmc/libpldm/src/msgbuf/
H A Dcore.h71 intmax_t remaining; member
76 intmax_t remaining; member
82 intmax_t remaining LIBPLDM_CC_UNUSED) in pldm__msgbuf_cleanup()
84 assert(cursor == NULL && remaining == INTMAX_MIN); in pldm__msgbuf_cleanup()
92 pldm__msgbuf_cleanup((const void *)ctx->cursor, ctx->remaining); in pldm__msgbuf_rw_cleanup()
100 pldm__msgbuf_cleanup((const void *)ctx->cursor, ctx->remaining); in pldm__msgbuf_ro_cleanup()
106 int pldm__msgbuf_set_invalid(intmax_t *remaining) in pldm__msgbuf_set_invalid() argument
108 *remaining = INTMAX_MIN; in pldm__msgbuf_set_invalid()
117 return pldm__msgbuf_set_invalid(&ctx->remaining); in pldm__msgbuf_rw_invalidate()
125 return pldm__msgbuf_set_invalid(&ctx->remaining); in pldm__msgbuf_ro_invalidate()
[all …]
/openbmc/phosphor-watchdog/test/
H A Dwatchdog.cpp126 auto remaining = milliseconds(wdog->timeRemaining()); in TEST_F() local
130 EXPECT_TRUE((remaining >= defaultInterval - Quantum(1)) && in TEST_F()
131 (remaining <= defaultInterval)); in TEST_F()
154 * Wait for 5 quantums and make sure that the remaining
167 // Get the remaining time again and expectation is that we get fewer in TEST_F()
168 auto remaining = milliseconds(wdog->timeRemaining()); in TEST_F() local
173 EXPECT_TRUE((remaining >= expected - Quantum(1)) && in TEST_F()
174 (remaining <= expected)); in TEST_F()
226 auto remaining = milliseconds(wdog->timeRemaining()); in TEST_F() local
227 EXPECT_GE(oldInterval, remaining); in TEST_F()
[all …]
/openbmc/linux/drivers/vfio/pci/
Dvfio_pci_igd.c
/openbmc/linux/arch/alpha/lib/
Dsrm_puts.c
/openbmc/linux/include/net/
Drtnh.h
/openbmc/openbmc/poky/meta/classes/
H A Duseradd.bbclass61 remaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'`
64 if test "x$opts" = "x$remaining"; then
67 opts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'`
68 remaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'`
77 remaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'`
80 if test "x$opts" = "x$remaining"; then
83 opts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'`
84 remaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'`
93 remaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'`
96 if test "x$opts" = "x$remaining"; then
[all …]
H A Dextrausers.bbclass33 remaining=`echo $user_group_settings | cut -d ';' -f2-`
66 if [ "$setting" = "$remaining" ]; then
70 setting=`echo $remaining | cut -d ';' -f1`
71 remaining=`echo $remaining | cut -d ';' -f2-`
/openbmc/phosphor-bmc-code-mgmt/i2c-vr/mps/
H A Dmps.hpp86 Iterator(std::string_view sv) : remaining(sv) in Iterator()
116 return a.remaining.empty() && b.remaining.empty(); in operator ==()
125 std::string_view remaining; member
131 if (remaining.empty()) in next()
137 auto newlinePos = remaining.find('\n'); in next()
138 std::string_view line = remaining.substr(0, newlinePos); in next()
139 remaining = (newlinePos == std::string_view::npos) in next()
141 : remaining.substr(newlinePos + 1); in next()
/openbmc/openbmc/meta-phosphor/recipes-phosphor/initrdscripts/files/
H A Dobmc-shutdown.sh54 remaining=$(ls $image*)
55 if test -n "$remaining"
58 echo 1>&2 "$remaining"
73 # for the remaining shutdown work
82 echo Remaining mounts:
/openbmc/linux/drivers/net/wwan/iosm/
Diosm_ipc_coredump.c
/openbmc/libpldm/src/
H A Dutils.c141 ssize_t remaining; in ver2str() local
157 remaining = (ssize_t)buffer_size; in ver2str()
160 INSERT_INT(BCD_H(version->major), cursor, remaining) in ver2str()
161 INSERT_INT(BCD_L(version->major), cursor, remaining); in ver2str()
162 INSERT_CHAR('.', cursor, remaining); in ver2str()
165 INSERT_INT(BCD_H(version->minor), cursor, remaining); in ver2str()
166 INSERT_INT(BCD_L(version->minor), cursor, remaining); in ver2str()
169 INSERT_CHAR('.', cursor, remaining); in ver2str()
171 INSERT_INT(BCD_H(version->update), cursor, remaining); in ver2str()
172 INSERT_INT(BCD_L(version->update), cursor, remaining); in ver2str()
[all …]
/openbmc/sdeventplus/src/sdeventplus/utility/
H A Dtimer.hpp39 * interval or time remaining.
131 * @return The remaining time as an std::chrono::duration
147 * @param[in] remaining - The new amount of time left on the timer
150 void setRemaining(Duration remaining);
170 * time remaining is set to the new interval, and the timer is
180 * time remaining is set to the new remaining, and the timer is
186 void restartOnce(Duration remaining);
/openbmc/openbmc/poky/bitbake/lib/bb/pysh/
H A Dpyshlex.py141 delimited, return a tuple (expr, remaining) containing the expression
149 remaining = ''.join(self._buffer)
152 return result, remaining
368 remaining = token
374 pos, sep = find_chars(remaining, delimiters)
376 tree += [remaining, '']
378 tree.append(remaining[:pos])
379 remaining = remaining[pos:]
382 result, remaining = WordLexer(heredoc = here_document).add(remaining, True)
435 """If the here-document was delimited, return a tuple (content, remaining).
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D04479 remaining = img_file_size - off_data
82 while remaining > 1024 * 512:
87 remaining = remaining - 1024 * 512
91 for j in range(0, remaining // 512))
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/
H A D0001-Fix-build-on-32bit.patch9 172 | std::min(size * nitems, static_cast<unsigned long>(bufReader->remaining()));
32 if (bufReader->remaining() > 0) {
34 - std::min(size * nitems, static_cast<unsigned long>(bufReader->remaining()));
35 + std::min(size * nitems, static_cast<size_t>(bufReader->remaining()));
/openbmc/linux/drivers/char/
Dps3flash.c
/openbmc/qemu/block/
H A Dparallels-ext.c190 int remaining = s->cluster_size; in parallels_parse_format_extension() local
200 remaining -= sizeof(eh); in parallels_parse_format_extension()
209 ret = qcrypto_hash_bytes(QCRYPTO_HASH_ALGO_MD5, (char *)pos, remaining, in parallels_parse_format_extension()
226 if (remaining < sizeof(fh)) { in parallels_parse_format_extension()
227 error_setg(errp, "Can not read feature header, as remaining bytes " in parallels_parse_format_extension()
229 "size (%zu)", remaining, sizeof(fh)); in parallels_parse_format_extension()
235 remaining -= sizeof(fh); in parallels_parse_format_extension()
246 if (fh.data_size > remaining) { in parallels_parse_format_extension()
/openbmc/linux/drivers/usb/musb/
Dtusb6010_omap.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/fw/
Dpaging.c
/openbmc/entity-manager/src/fru_device/
H A Dfru_reader.cpp11 size_t remaining = len; in read() local
68 : std::min(available - blkOffset, remaining); in read()
74 remaining -= toCopy; in read()
/openbmc/linux/drivers/net/ethernet/rocker/
Drocker_tlv.h
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/
Daux.c
/openbmc/linux/tools/lib/bpf/
Dnlattr.c
/openbmc/linux/drivers/staging/rtl8723bs/
DTODO
/openbmc/linux/lib/zstd/common/
Dentropy_common.c

12345678910>>...54