OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cpu_addr
(Results
1 - 2
of
2
) sorted by null
/external/kernel-headers/original/asm-arm/
dma-mapping.h
79
* @
cpu_addr
: CPU-view address returned from dma_alloc_coherent
85
* References to memory and mappings associated with
cpu_addr
/handle
89
dma_free_coherent(struct device *dev, size_t size, void *
cpu_addr
,
96
* @
cpu_addr
: kernel CPU-view address returned from dma_alloc_coherent
105
void *
cpu_addr
, dma_addr_t handle, size_t size);
122
#define dma_free_writecombine(dev,size,
cpu_addr
,handle) \
123
dma_free_coherent(dev,size,
cpu_addr
,handle)
126
void *
cpu_addr
, dma_addr_t handle, size_t size);
132
* @
cpu_addr
: CPU direct mapped address of buffer
145
dma_map_single(struct device *dev, void *
cpu_addr
, size_t size
[
all
...]
/development/tools/emulator/opengl/system/gralloc/
gralloc.cpp
530
void *
cpu_addr
= NULL;
local
542
cpu_addr
= (void *)(cb->ashmemBase + sizeof(int));
545
cpu_addr
= (void *)(cb->ashmemBase);
571
*vaddr =
cpu_addr
;
610
void *
cpu_addr
;
local
612
cpu_addr
= (void *)(cb->ashmemBase + sizeof(int));
615
cpu_addr
= (void *)(cb->ashmemBase);
624
char *src = (char *)
cpu_addr
+ cb->lockedTop*src_line_len + cb->lockedLeft*bpp;
644
cpu_addr
);
Completed in 419 milliseconds