Home
last modified time | relevance | path

Searched refs:_val (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/arm-trusted-firmware/include/common/aarch32/
Dasm_macros.S86 .macro mov_imm _reg, _val argument
87 .if ((\_val) & 0xffff0000) == 0
88 mov \_reg, #(\_val)
90 movw \_reg, #((\_val) & 0xffff)
91 movt \_reg, #((\_val) >> 16)
132 .macro orr64_imm _reg_l, _reg_h, _val argument
133 .if (\_val >> 32)
134 orr \_reg_h, \_reg_h, #(\_val >> 32)
136 .if (\_val & 0xffffffff)
137 orr \_reg_l, \_reg_l, #(\_val & 0xffffffff)
[all …]
/device/linaro/bootloader/arm-trusted-firmware/include/common/aarch64/
Dasm_macros.S137 .macro _mov_imm16 _reg, _val, _shift
138 .if (\_val >> \_shift) & 0xffff
139 .if (\_val & (1 << \_shift - 1))
140 movk \_reg, (\_val >> \_shift) & 0xffff, LSL \_shift
142 mov \_reg, \_val & (0xffff << \_shift)
153 .macro mov_imm _reg, _val argument
154 .if (\_val) == 0
157 _mov_imm16 \_reg, (\_val), 0
158 _mov_imm16 \_reg, (\_val), 16
159 _mov_imm16 \_reg, (\_val), 32
[all …]
/device/linaro/bootloader/arm-trusted-firmware/plat/arm/board/juno/aarch64/
Djuno_helpers.S245 .macro emit_movw _reg_d, _val argument
247 ((\_val & 0xfff) | \
248 ((\_val & 0xf000) << 4)))
255 .macro emit_movt _reg_d, _val argument
257 (((\_val & 0x0fff0000) >> 16) | \
258 ((\_val & 0xf0000000) >> 12)))
/device/google/contexthub/firmware/os/inc/
Dsyscall.h45 #define SYSCALL_CUT_SCALE_SHIFT(_val, _cut, _shift) ((((uint32_t)(_val)) & ((1UL << (_cut)) - 1))… argument
/device/google/contexthub/util/nanoapp_postprocess/
Dpostprocess.c42 #define IS_IN_RANGE_E(_val, _rstart, _rend) (((_val) >= (_rstart)) && ((_val) < (_rend))) argument
43 #define IS_IN_RANGE(_val, _rstart, _rsz) IS_IN_RANGE_E((_val), (_rstart), ((_rstart) + (_rsz))) argument
44 #define IS_IN_RAM(_val) IS_IN_RANGE(_val, RAM_BASE, RAM_SIZE) argument
45 #define IS_IN_FLASH(_val) IS_IN_RANGE(_val, FLASH_BASE, FLASH_SIZE) argument
Dpostprocess_elf.c44 #define IS_IN_RANGE_E(_val, _rstart, _rend) (((_val) >= (_rstart)) && ((_val) < (_rend))) argument
45 #define IS_IN_RANGE(_val, _rstart, _rsz) IS_IN_RANGE_E((_val), (_rstart), ((_rstart) + (_rsz))) argument
46 #define IS_IN_RAM(_val) IS_IN_RANGE(_val, RAM_BASE, RAM_SIZE) argument
47 #define IS_IN_FLASH(_val) IS_IN_RANGE(_val, FLASH_BASE, FLASH_SIZE) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
Dlibpython.py94 self._val = ''
99 if len(data) + len(self._val) > self.maxlen:
101 self._val += data[0:self.maxlen - len(self._val)]
104 self._val += data
107 return self._val