HomeSort by relevance Sort by last modified time
    Searched defs:MEMORY (Results 1 - 25 of 72) sorted by null

1 2 3

  /device/linaro/bootloader/arm-trusted-firmware/include/plat/arm/common/
arm_common.ld.S 9 MEMORY {
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3328/include/
plat.ld.S 9 MEMORY {
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3368/include/
plat.ld.S 9 MEMORY {
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/include/
plat.ld.S 9 MEMORY {
  /system/core/debuggerd/libdebuggerd/include/libdebuggerd/
utility.h 58 MEMORY,
68 class Memory;
71 void dump_memory(log_t* log, unwindstack::Memory* backtrace, uint64_t addr, const std::string&);
  /device/linaro/bootloader/arm-trusted-firmware/bl1/
bl1.ld.S 13 MEMORY {
55 * the .data section, which can mapped in ROM with the same memory
139 * The base address of the coherent memory section must be page-aligned (4K)
142 * memory attributes for the coherent data page tables.
149 * Memory page(s) mapped to this section will be marked
150 * as device memory. No other unexpected data must creep in.
151 * Ensure the rest of the current memory page is unused.
  /device/linaro/bootloader/arm-trusted-firmware/bl2/
bl2.ld.S 13 MEMORY {
63 * Memory page(s) mapped to this section will be marked as
65 * creep in. Ensure the rest of the current memory page is unused.
73 * Define a linker symbol to mark start of the RW memory area for this
118 * The base address of the coherent memory section must be page-aligned (4K)
121 * memory attributes for the coherent data page tables.
128 * Memory page(s) mapped to this section will be marked
129 * as device memory. No other unexpected data must creep in.
130 * Ensure the rest of the current memory page is unused.
138 * Define a linker symbol to mark end of the RW memory area for thi
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/bl2u/
bl2u.ld.S 13 MEMORY {
50 * Memory page(s) mapped to this section will be marked as
52 * creep in. Ensure the rest of the current memory page is unused.
60 * Define a linker symbol to mark start of the RW memory area for this
105 * The base address of the coherent memory section must be page-aligned (4K)
108 * memory attributes for the coherent data page tables.
115 * Memory page(s) mapped to this section will be marked
116 * as device memory. No other unexpected data must creep in.
117 * Ensure the rest of the current memory page is unused.
125 * Define a linker symbol to mark end of the RW memory area for thi
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/bl32/tsp/
tsp.ld.S 14 MEMORY {
50 * Memory page(s) mapped to this section will be marked as
52 * creep in. Ensure the rest of the current memory page is unused.
60 * Define a linker symbol to mark start of the RW memory area for this
104 * The base address of the coherent memory section must be page-aligned (4K)
107 * memory attributes for the coherent data page tables.
114 * Memory page(s) mapped to this section will be marked
115 * as device memory. No other unexpected data must creep in.
116 * Ensure the rest of the current memory page is unused.
124 * Define a linker symbol to mark the end of the RW memory area for thi
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt6795/
bl31.ld.S 14 MEMORY {
57 * Memory page(s) mapped to this section will be marked as read-only,
59 * Ensure the rest of the current memory page is unused.
69 * Define a linker symbol to mark start of the RW memory area for this
106 * Bakery locks are stored in normal .bss memory
110 * The compiler will allocate enough memory for one CPU's bakery locks,
142 * The base address of the coherent memory section must be page-aligned (4K)
145 * memory attributes for the coherent data page tables.
150 * Bakery locks are stored in coherent memory
158 * Memory page(s) mapped to this section will be marke
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/bl31/
bl31.ld.S 14 MEMORY {
109 * Memory page(s) mapped to this section will be marked as read-only,
111 * Ensure the rest of the current memory page is unused.
122 * Define a linker symbol to mark start of the RW memory area for this
159 * Bakery locks are stored in normal .bss memory
163 * The compiler will allocate enough memory for one CPU's bakery locks,
181 * Time-stamps are stored in normal .bss memory
183 * The compiler will allocate enough memory for one CPU's time-stamps,
184 * the remaining memory for other CPU's is allocated by the
210 * The base address of the coherent memory section must be page-aligned (4K
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/bl32/sp_min/
sp_min.ld.S 13 MEMORY {
90 * Memory page(s) mapped to this section will be marked as
92 * creep in. Ensure the rest of the current memory block is unused.
102 * Define a linker symbol to mark start of the RW memory area for this
130 * Bakery locks are stored in normal .bss memory
134 * The compiler will allocate enough memory for one CPU's bakery locks,
152 * Time-stamps are stored in normal .bss memory
154 * The compiler will allocate enough memory for one CPU's time-stamps,
155 * the remaining memory for other CPU's is allocated by the
184 * The base address of the coherent memory section must be page-aligned (4K
    [all...]
  /frameworks/ml/nn/runtime/
ExecutionBuilder.h 22 #include "Memory.h"
37 class Memory;
44 // Whether the argument was specified as being in a Memory, as a pointer,
50 // If MEMORY then:
53 enum { POINTER, MEMORY, HAS_NO_VALUE, UNSPECIFIED } state = UNSPECIFIED;
74 const Memory* memory, size_t offset, size_t length);
78 const Memory* memory, size_t offset, size_t length);
96 // 2. Once we have all the inputs and outputs, if needed, allocate shared memory fo
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
arc-tbl.h     [all...]
  /frameworks/base/core/java/android/text/
Selection.java 82 * to <code>stop</code> and the memory horizontal to <code>memory</code>.
84 private static void setSelection(Spannable text, int start, int stop, int memory) {
96 updateMemory(text, memory);
101 * Update the memory position for text. This is used to ensure vertical navigation of lines
105 private static void updateMemory(Spannable text, int memory) {
106 if (memory > -1) {
108 if (memory != currentMemory) {
109 text.setSpan(SELECTION_MEMORY, memory, memory, Spanned.SPAN_POINT_POINT)
238 int memory = getSelectionMemory(text); local
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatterySipper.java 127 MEMORY,
  /external/libpng/contrib/libtests/
pngimage.c 64 * produce data with a memory format that does not correspond to a PNG format.
357 * The original file is cached in memory. During write the output file is
358 * written to memory.
427 # define MEMORY ENOMEM
429 # define MEMORY ERANGE /* required by ANSI-C */
482 return MEMORY;
517 APP_ERROR, /* such as out-of-memory in a callback */
592 * memory is not freed.
648 /* Release any memory held in the display. */
    [all...]
  /toolchain/binutils/binutils-2.27/include/opcode/
arc.h 55 MEMORY,
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Include/Library/
HwMemInitLib.h 343 }MEMORY;
412 MEMORY mem;
596 #define SPD_MEM_BUS_WID 8 // Width of SDRAM memory bus
755 #define SPD_MEM_BUS_WID_DDR4 13 // Width of SDRAM memory bus
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/picasso/picasso/2.5.2/
picasso-2.5.2.jar 
  /prebuilts/tools/common/m2/repository/org/xerial/sqlite-jdbc/3.16.1/
sqlite-jdbc-3.16.1.jar 
  /prebuilts/tools/common/m2/repository/org/xerial/sqlite-jdbc/3.20.1/
sqlite-jdbc-3.20.1.jar 
  /external/robolectric/v1/lib/main/
sqlite-jdbc-3.7.2.jar 
  /prebuilts/jdk/jdk8/darwin-x86/lib/
jconsole.jar 
  /prebuilts/jdk/jdk8/linux-x86/lib/
jconsole.jar 

Completed in 877 milliseconds

1 2 3