OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:buf_
(Results
1 - 6
of
6
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_flag_parser.cc
76
while (is_space(
buf_
[pos_])) ++pos_;
81
while (
buf_
[pos_] != 0 &&
buf_
[pos_] != '=' && !is_space(
buf_
[pos_])) ++pos_;
82
if (
buf_
[pos_] != '=') fatal_error("expected '='");
83
char *name = ll_strndup(
buf_
+ name_start, pos_ - name_start);
87
if (
buf_
[pos_] == '\'' ||
buf_
[pos_] == '"') {
88
char quote =
buf_
[pos_++];
89
while (
buf_
[pos_] != 0 && buf_[pos_] != quote) ++pos_
[
all
...]
sanitizer_syscalls_netbsd.inc
111
PRE_SYSCALL(read)(long long fd_, void *
buf_
, long long nbyte_) {
112
if (
buf_
) {
113
PRE_WRITE(
buf_
, nbyte_);
116
POST_SYSCALL(read)(long long res, long long fd_, void *
buf_
, long long nbyte_) {
118
POST_WRITE(
buf_
, res);
121
PRE_SYSCALL(write)(long long fd_, void *
buf_
, long long nbyte_) {
122
if (
buf_
) {
123
PRE_READ(
buf_
, nbyte_);
127
(long long res, long long fd_, void *
buf_
, long long nbyte_) {
129
POST_READ(
buf_
, res)
[
all
...]
sanitizer_flag_parser.h
109
const char *
buf_
;
member in class:__sanitizer::FlagParser
/src/sys/external/isc/libsodium/dist/src/libsodium/randombytes/nativeclient/
randombytes_nativeclient.c
17
unsigned char *
buf_
= (unsigned char *) buf;
local in function:randombytes_nativeclient_buf
27
if (rand_intf.get_random_bytes(
buf_
, size, &readnb) != 0 ||
32
buf_
+= readnb;
/src/sys/external/isc/libsodium/dist/src/libsodium/randombytes/sysrandom/
randombytes_sysrandom.c
107
safe_read(const int fd, void * const
buf_
, size_t size)
109
unsigned char *buf = (unsigned char *)
buf_
;
127
return (ssize_t) (buf - (unsigned char *)
buf_
);
226
randombytes_linux_getrandom(void * const
buf_
, size_t size)
228
unsigned char *buf = (unsigned char *)
buf_
;
/src/sys/external/isc/libsodium/dist/src/libsodium/randombytes/salsa20/
randombytes_salsa20_random.c
157
safe_read(const int fd, void * const
buf_
, size_t size)
159
unsigned char *buf = (unsigned char *)
buf_
;
177
return (ssize_t) (buf - (unsigned char *)
buf_
);
268
randombytes_linux_getrandom(void * const
buf_
, size_t size)
270
unsigned char *buf = (unsigned char *)
buf_
;
Completed in 14 milliseconds
Indexes created Wed Oct 15 16:09:53 GMT 2025