Home
last modified time | relevance | path

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

/device/linaro/bootloader/arm-trusted-firmware/include/common/
Dasm_macros.S172 .macro _mov_imm16 _reg, _val, _shift
173 .if (\_val >> \_shift) & 0xffff
174 .if (\_val & (1 << \_shift - 1))
175 movk \_reg, (\_val >> \_shift) & 0xffff, LSL \_shift
177 mov \_reg, \_val & (0xffff << \_shift)
188 .macro mov_imm _reg, _val argument
189 .if (\_val) == 0
192 _mov_imm16 \_reg, (\_val), 0
193 _mov_imm16 \_reg, (\_val), 16
194 _mov_imm16 \_reg, (\_val), 32
[all …]
/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