OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mapAddr
(Results
1 - 5
of
5
) sorted by null
/external/icu/icu4c/source/common/
udatamem.h
37
void *
mapAddr
; /* For mapped or allocated memory, the start addr. */
43
/* beyond the
mapAddr
is needed to do that. */
/system/core/liblog/
event_tag_map.cpp
118
void*
mapAddr
[NUM_MAPS];
130
memset(
mapAddr
, 0, sizeof(
mapAddr
));
139
if (
mapAddr
[which]) {
140
munmap(
mapAddr
[which], mapLen[which]);
141
mapAddr
[which] = 0;
351
const char* cp = static_cast<char*>(map->
mapAddr
[which]);
451
newTagMap->
mapAddr
[which] =
457
if ((newTagMap->
mapAddr
[which] != MAP_FAILED) &&
458
(newTagMap->
mapAddr
[which] != NULL))
[
all
...]
/external/fio/os/windows/
posix.c
625
void*
mapAddr
;
627
mapAddr
= MapViewOfFile(fileMappings[shmid], FILE_MAP_ALL_ACCESS, 0, 0, 0);
628
if (
mapAddr
== NULL) {
633
if (VirtualQuery(
mapAddr
, &memInfo, sizeof(memInfo)) == 0) {
638
mapAddr
= VirtualAlloc(
mapAddr
, memInfo.RegionSize, MEM_COMMIT, PAGE_READWRITE);
639
if (
mapAddr
== NULL) {
644
return
mapAddr
;
/prebuilts/go/darwin-x86/src/encoding/json/
decode_test.go
260
func
mapAddr
(x map[string]int) *map[string]int { return &x }
549
{in: `{"key": 2}`, ptr:
mapAddr
(map[string]int{"old": 0, "key": 1}), out: map[string]int{"key": 2}},
[
all
...]
/prebuilts/go/linux-x86/src/encoding/json/
decode_test.go
260
func
mapAddr
(x map[string]int) *map[string]int { return &x }
549
{in: `{"key": 2}`, ptr:
mapAddr
(map[string]int{"old": 0, "key": 1}), out: map[string]int{"key": 2}},
[
all
...]
Completed in 566 milliseconds