Lines Matching refs:depth
3718 // Working in the higher bit depth can produce slightly different (and
3890 // Common 8-bit-depth pixel formats. This list is not exhaustive; not all valid
24584 const char wuffs_cbor__error__unsupported_recursion_depth[] = "#cbor: unsupported recursion depth";
32352 const char wuffs_json__error__unsupported_recursion_depth[] = "#json: unsupported recursion depth";
44337 int32_t depth = 0;
44456 depth++;
44457 if (depth > WUFFS_CBOR__DECODER_DEPTH_MAX_INCL) {
44459 "wuffs_aux::DecodeCbor: internal error: bad depth";
44465 depth--;
44466 if (depth < 0) {
44468 "wuffs_aux::DecodeCbor: internal error: bad depth";
44611 if (!ret_error_message.empty() || (depth == 0)) {
45587 int32_t depth = 0;
45629 depth++;
45630 if (depth > WUFFS_JSON__DECODER_DEPTH_MAX_INCL) {
45632 "wuffs_aux::DecodeJson: internal error: bad depth";
45638 depth--;
45639 if (depth < 0) {
45641 "wuffs_aux::DecodeJson: internal error: bad depth";
45743 // If an error was encountered, we are done. Otherwise, (depth == 0)
45758 ((depth == 0) && !json_pointer.repr.empty())) {