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:exec_mem
(Results
1 - 2
of
2
) sorted by relevance
/third_party/mesa3d/src/mapi/
H
A
D
u_execmem.c
45
static unsigned char *
exec_mem
= (unsigned char *)0;
variable
79
if (!
exec_mem
)
in init_map()
80
exec_mem
= mmap(NULL, EXEC_MAP_SIZE, PROT_EXEC | PROT_READ | PROT_WRITE,
in init_map()
83
return (
exec_mem
!= MAP_FAILED);
in init_map()
99
exec_mem
= VirtualAlloc(NULL, EXEC_MAP_SIZE, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
in init_map()
101
return (
exec_mem
!= NULL);
in init_map()
112
exec_mem
= malloc(EXEC_MAP_SIZE);
in init_map()
114
return (
exec_mem
!= NULL);
in init_map()
139
addr =
exec_mem
+ head;
in u_execmem_alloc()
/third_party/mesa3d/src/gallium/auxiliary/rtasm/
H
A
D
rtasm_execmem.c
69
static unsigned char *
exec_mem
= NULL;
variable
78
if (!
exec_mem
)
in init_heap()
79
exec_mem
= (unsigned char *) mmap(NULL, EXEC_HEAP_SIZE,
in init_heap()
83
return (
exec_mem
!= MAP_FAILED);
in init_heap()
104
addr =
exec_mem
+ block->ofs;
in rtasm_exec_malloc()
121
struct mem_block *block = u_mmFindBlock(exec_heap, (unsigned char *)addr -
exec_mem
);
in rtasm_exec_free()
Completed in 1 milliseconds