Lines Matching defs:value
632 *left_anchor = expr->v.Subscript.value->end_col_offset;
651 return extract_anchors_from_expr(segment_str, statement->v.Expr.value, left_anchor, right_anchor,
1042 _Py_DumpDecimal(int fd, size_t value)
1056 *ptr = '0' + (value % 10);
1057 value /= 10;
1058 } while (value);
1066 _Py_DumpHexadecimal(int fd, uintptr_t value, Py_ssize_t width)
1081 *ptr = Py_hexdigits[value & 15];
1082 value >>= 4;
1083 } while ((end - ptr) < width || value);