Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:CMSG_ALIGN
(Results
1 - 15
of
15
) sorted by relevance
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H
A
D
socket.h
360
#define
CMSG_ALIGN
(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
macro
361
#define CMSG_SPACE(len) (
CMSG_ALIGN
(len) +
CMSG_ALIGN
(sizeof (struct cmsghdr)))
362
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof (struct cmsghdr)) + (len))
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H
A
D
socket.h
351
#define
CMSG_ALIGN
(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
macro
352
#define CMSG_SPACE(len) (
CMSG_ALIGN
(len) +
CMSG_ALIGN
(sizeof (struct cmsghdr)))
353
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof (struct cmsghdr)) + (len))
/third_party/musl/porting/liteos_m/kernel/include/sys/
H
A
D
socket.h
360
#define
CMSG_ALIGN
(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
macro
361
#define CMSG_SPACE(len) (
CMSG_ALIGN
(len) +
CMSG_ALIGN
(sizeof (struct cmsghdr)))
362
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof (struct cmsghdr)) + (len))
/third_party/musl/porting/liteos_a/kernel/include/sys/
H
A
D
socket.h
362
#define
CMSG_ALIGN
(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
macro
363
#define CMSG_SPACE(len) (
CMSG_ALIGN
(len) +
CMSG_ALIGN
(sizeof (struct cmsghdr)))
364
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof (struct cmsghdr)) + (len))
/third_party/musl/porting/linux/user/include/sys/
H
A
D
socket.h
366
#define
CMSG_ALIGN
(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
macro
367
#define CMSG_SPACE(len) (
CMSG_ALIGN
(len) +
CMSG_ALIGN
(sizeof (struct cmsghdr)))
368
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof (struct cmsghdr)) + (len))
/third_party/musl/porting/uniproton/kernel/include/sys/
H
A
D
socket.h
360
#define
CMSG_ALIGN
(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
macro
361
#define CMSG_SPACE(len) (
CMSG_ALIGN
(len) +
CMSG_ALIGN
(sizeof (struct cmsghdr)))
362
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof (struct cmsghdr)) + (len))
/third_party/musl/include/sys/
H
A
D
socket.h
365
#define
CMSG_ALIGN
(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
macro
366
#define CMSG_SPACE(len) (
CMSG_ALIGN
(len) +
CMSG_ALIGN
(sizeof (struct cmsghdr)))
367
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof (struct cmsghdr)) + (len))
/third_party/rust/crates/linux-raw-sys/src/
H
A
D
lib.rs
88
pub unsafe fn
CMSG_ALIGN
(len: c_uint) -> c_uint {
in CMSG_ALIGN()
functions
98
size_of::<cmsghdr>() as c_uint +
CMSG_ALIGN
(len)
in CMSG_SPACE()
118
let next_cmsg = (cmsg as *mut u8).offset(
CMSG_ALIGN
(cmsg_len as _) as isize) as *mut cmsghdr;
in CMSG_NXTHDR()
125
if next_cmsg.offset(1) as usize > max || next_cmsg as usize +
CMSG_ALIGN
(cmsg_len as _) as usize > max
in CMSG_NXTHDR()
/third_party/rust/crates/libc/src/vxworks/
H
A
D
mod.rs
1039
pub {const} fn
CMSG_ALIGN
(len: usize) -> usize {
1045
let next = cmsg as usize +
CMSG_ALIGN
((*cmsg).cmsg_len as usize)
in CMSG_NXTHDR()
1046
+
CMSG_ALIGN
(::mem::size_of::<::cmsghdr>());
in CMSG_NXTHDR()
1050
(cmsg as usize +
CMSG_ALIGN
((*cmsg).cmsg_len as usize))
in CMSG_NXTHDR()
1067
.offset(
CMSG_ALIGN
(::mem::size_of::<::cmsghdr>()) as isize)
in CMSG_DATA()
1071
(
CMSG_ALIGN
(length as usize) +
CMSG_ALIGN
(::mem::size_of::<cmsghdr>()))
1076
CMSG_ALIGN
(::mem::size_of::<cmsghdr>()) as ::c_uint + length
in CMSG_LEN()
/third_party/rust/crates/libc/src/unix/haiku/
H
A
D
mod.rs
1465
{const} fn
CMSG_ALIGN
(len: usize) -> usize {
1481
.offset(
CMSG_ALIGN
(::mem::size_of::<::cmsghdr>()) as isize)
in CMSG_DATA()
1485
(
CMSG_ALIGN
(length as usize) +
CMSG_ALIGN
(::mem::size_of::<cmsghdr>()))
1490
CMSG_ALIGN
(::mem::size_of::<cmsghdr>()) as ::c_uint + length
in CMSG_LEN()
1498
let next = cmsg as usize +
CMSG_ALIGN
((*cmsg).cmsg_len as usize)
in CMSG_NXTHDR()
1499
+
CMSG_ALIGN
(::mem::size_of::<::cmsghdr>());
in CMSG_NXTHDR()
1505
(cmsg as usize +
CMSG_ALIGN
((*cmsg).cmsg_len as usize))
in CMSG_NXTHDR()
/third_party/rust/crates/libc/src/unix/linux_like/
H
A
D
mod.rs
1514
{const} fn
CMSG_ALIGN
(len: usize) -> usize {
1533
(
CMSG_ALIGN
(length as usize) +
CMSG_ALIGN
(::mem::size_of::<cmsghdr>()))
1538
CMSG_ALIGN
(::mem::size_of::<cmsghdr>()) as ::c_uint + length
in CMSG_LEN()
/third_party/rust/crates/libc/src/fuchsia/
H
A
D
mod.rs
3263
pub {const} fn
CMSG_ALIGN
(len: ::size_t) -> ::size_t {
3269
(
CMSG_ALIGN
(len as ::size_t) +
CMSG_ALIGN
(::mem::size_of::<cmsghdr>()))
3274
(
CMSG_ALIGN
(::mem::size_of::<cmsghdr>()) + len as ::size_t) as ::c_uint
in CMSG_LEN()
/third_party/rust/crates/libc/src/unix/linux_like/emscripten/
H
A
D
mod.rs
1681
super::
CMSG_ALIGN
((*cmsg).cmsg_len as usize))
in CMSG_NXTHDR()
/third_party/rust/crates/libc/src/unix/linux_like/linux/
H
A
D
mod.rs
3601
super::
CMSG_ALIGN
((*cmsg).cmsg_len as usize))
in CMSG_NXTHDR()
3606
next as usize + super::
CMSG_ALIGN
((*next).cmsg_len as usize) > max
in CMSG_NXTHDR()
/third_party/rust/crates/libc/src/unix/linux_like/android/
H
A
D
mod.rs
2992
+ super::
CMSG_ALIGN
((*cmsg).cmsg_len as usize))
in CMSG_NXTHDR()
Completed in 87 milliseconds