Lines Matching defs:result
539 // WUFFS_BASE__RESULT is a result type: either a status (an error) or a value.
541 // A result with all fields NULL or zero is as valid as a zero-valued T.
554 // wuffs_base__transform__output is the result of transforming from a src slice
1674 // the result should be bounded by the amount of allocatable memory (which
1698 // required for a conclusive result. For example, a single 'B' byte (without
5296 // not always produce the same result as the C-style cast ((float)d), as
5392 // - Errors are returned in-band (in a result type), not out-of-band (errno).
5437 // - Errors are returned in-band (in a result type), not out-of-band (errno).
10500 Done(DecodeCborResult& result, sync_io::Input& input, IOBuffer& buffer);
10564 // AllocPixbufResult holds a memory allocation (the result of malloc or new,
10576 // AllocWorkbufResult holds a memory allocation (the result of malloc or new,
10696 Done(DecodeImageResult& result,
10925 Done(DecodeJsonResult& result, sync_io::Input& input, IOBuffer& buffer);
13981 // lower is inclusive and is exactly the result of rounding down (i.e. we
14011 // is inclusive or upper is bigger than the result of rounding up.
14154 // result. This time, if it does, give up instead of reaching for an even
44284 DecodeCborCallbacks::Done(DecodeCborResult& result,
44618 DecodeCborResult result(
44621 callbacks.Done(result, input, *io_buf);
44622 return result;
44778 DecodeImageResult& result,
45179 DecodeImageResult result =
45183 callbacks.Done(result, input, *io_buf, std::move(image_decoder));
45184 return result;
45208 DecodeJsonCallbacks::Done(DecodeJsonResult& result,
45765 DecodeJsonResult result(
45768 callbacks.Done(result, input, *io_buf);
45769 return result;