v8
3.28.71 (node 0.12.18)
V8 is Google's open source JavaScript engine
Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
r
s
t
u
Functions
Variables
Typedefs
a
c
e
f
g
i
j
l
m
n
p
r
s
Enumerations
Enumerator
a
b
c
d
e
k
n
p
r
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
~
Variables
a
b
c
d
h
i
k
l
n
o
p
r
s
t
u
v
Typedefs
Enumerations
Enumerator
a
b
c
h
k
n
o
p
r
s
t
u
Related Functions
a
c
e
f
h
i
l
m
n
o
p
r
s
t
u
v
Files
File List
Globals
All
Macros
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
v8stdint.h
Go to the documentation of this file.
1
// Copyright 2012 the V8 project authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
// Load definitions of standard types.
6
7
#
ifndef
V8STDINT_H_
8
#
define
V8STDINT_H_
9
10
#
include
<
stddef
.
h
>
11
#
include
<
stdio
.
h
>
12
13
#
include
"v8config.h"
14
15
#
if
V8_OS_WIN
&&
!
V8_CC_MINGW
16
17
typedef
signed
char
int8_t;
18
typedef
unsigned
char
uint8_t;
19
typedef
short
int16_t;
// NOLINT
20
typedef
unsigned
short
uint16_t;
// NOLINT
21
typedef
int
int32_t;
22
typedef
unsigned
int
uint32_t;
23
typedef
__int64 int64_t;
24
typedef
unsigned
__int64 uint64_t;
25
// intptr_t and friends are defined in crtdefs.h through stdio.h.
26
27
#
else
28
29
#
include
<
stdint
.
h
>
// NOLINT
30
31
#
endif
32
33
#
endif
// V8STDINT_H_
include
v8stdint.h
Generated on Fri Oct 29 2021 20:04:31 for v8 by
1.9.1