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:ptr_key
(Results
1 - 5
of
5
) sorted by relevance
/third_party/node/deps/v8/src/base/platform/
H
A
D
platform-posix.cc
1103
intptr_t
ptr_key
= reinterpret_cast<intptr_t>(pthread_key);
in PthreadKeyToLocalKey()
local
1104
return static_cast<Thread::LocalStorageKey>(
ptr_key
);
in PthreadKeyToLocalKey()
1114
intptr_t
ptr_key
= static_cast<intptr_t>(local_key);
in LocalKeyToPthreadKey()
local
1115
return reinterpret_cast<pthread_key_t>(
ptr_key
);
in LocalKeyToPthreadKey()
/third_party/json/tests/src/
H
A
D
unit-regression1.cpp
405
char*
ptr_key
= &_ptr_key[0]; // NOLINT(cppcoreguidelines-pro-type-vararg,hicpp-vararg)
variable
406
CHECK_NOTHROW(j[
ptr_key
] = 3);
407
CHECK(j[
ptr_key
] == json(3));
428
CHECK(j_const[
ptr_key
] == json(3));
/kernel/linux/linux-5.10/lib/
H
A
D
vsprintf.c
748
static siphash_key_t
ptr_key
__read_mostly;
752
get_random_bytes(&
ptr_key
, sizeof(
ptr_key
));
in enable_ptr_key_workfn()
773
int key_size = sizeof(
ptr_key
);
in initialize_ptr_random()
777
if (get_random_bytes_arch(&
ptr_key
, key_size) == key_size) {
in initialize_ptr_random()
804
hashval = (unsigned long)siphash_1u64((u64)ptr, &
ptr_key
);
in __ptr_to_hashval()
811
hashval = (unsigned long)siphash_1u32((u32)ptr, &
ptr_key
);
in __ptr_to_hashval()
/kernel/linux/linux-6.6/lib/
H
A
D
vsprintf.c
756
static siphash_key_t
ptr_key
__read_mostly;
760
get_random_bytes(&
ptr_key
, sizeof(
ptr_key
));
in fill_ptr_key()
762
/* Pairs with smp_rmb() before reading
ptr_key
. */
in fill_ptr_key()
784
/* Pairs with smp_wmb() after writing
ptr_key
. */
in __ptr_to_hashval()
788
hashval = (unsigned long)siphash_1u64((u64)ptr, &
ptr_key
);
in __ptr_to_hashval()
795
hashval = (unsigned long)siphash_1u32((u32)ptr, &
ptr_key
);
in __ptr_to_hashval()
/third_party/python/Modules/
H
A
D
_testcapimodule.c
5496
Py_tss_t *
ptr_key
= PyThread_tss_alloc();
in test_pythread_tss_key_state()
local
5497
if (
ptr_key
== NULL) {
in test_pythread_tss_key_state()
5501
if (PyThread_tss_is_created(
ptr_key
)) {
in test_pythread_tss_key_state()
5506
PyThread_tss_free(
ptr_key
);
in test_pythread_tss_key_state()
5507
ptr_key
= NULL;
in test_pythread_tss_key_state()
Completed in 22 milliseconds