Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:arch\x86\boot\string.c Create Date:2022-07-28 07:27:07
Last Modify:2022-05-21 21:56:45 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:_parse_integer_fixup_radix

Proto:static const char *_parse_integer_fixup_radix(const char *s, unsigned int *base)

Type:char

Parameter:

TypeParameterName
const char *s
unsigned int *base
235  If base == 0 Then
236  If s[0] == '0' Then
237  If _tolower(s[1]) == 'x' && isxdigit(s[2]) Then base = 16
239  Else base = 8
241  Else base = 10
244  If base == 16 && s[0] == '0' && _tolower(s[1]) == 'x' Then s += 2
246  Return s
Caller
NameDescribe
vsscanfvsscanf - Unformat a buffer into a list of arguments*@buf: input buffer*@fmt: format of buffer*@args: arguments
_kstrtoull
_kstrtoull
__bpf_strtoull