/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/ |
H A D | utlist.h | 316 #define LL_PREPEND(head,add) \ 317 LL_PREPEND2(head,add,next) 319 #define LL_PREPEND2(head,add,next) \ 321 (add)->next = (head); \ 322 (head) = (add); \ 340 #define LL_APPEND(head,add) \ 341 LL_APPEND2(head,add,next) 343 #define LL_APPEND2(head,add,next) \ 346 (add)->next=NULL; \ 350 _tmp->next=(add); \ [all...] |
H A D | uthash.h | 200 #define HASH_REPLACE_BYHASHVALUE_INORDER(hh,head,fieldname,keylen_in,hashval,add,replaced,cmpfcn) \ 203 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \ 207 HASH_ADD_KEYPTR_BYHASHVALUE_INORDER(hh, head, &((add)->fieldname), keylen_in, hashval, add, cmpfcn); \ 210 #define HASH_REPLACE_BYHASHVALUE(hh,head,fieldname,keylen_in,hashval,add,replaced) \ 213 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \ 217 HASH_ADD_KEYPTR_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, add); \ 220 #define HASH_REPLACE(hh,head,fieldname,keylen_in,add,replaced) \ 223 HASH_VALUE(&((add) [all...] |
/test/xts/tools/build/ |
H A D | test_package_select.py | 28 subsystems.add("demo") 29 subsystems.add("storage") 30 subsystems.add("arkXtest") 31 subsystems.add("validator") 32 subsystems.add("pcs") 33 subsystems.add("appbuild") 42 subsystems.add(item)
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/mbedtls/include/mbedtls/ |
H A D | ccm.h | 141 * \param add The additional data field. If \p add_len is greater than 142 * zero, \p add must be a readable buffer of at least that 162 const unsigned char *add, size_t add_len, 187 * \param add The additional data field. This must be a readable buffer of 210 const unsigned char *add, size_t add_len, 226 * \param add The additional data field. This must be a readable buffer 247 const unsigned char *add, size_t add_len, 268 * \param add The additional data field. This must be a readable buffer of 292 const unsigned char *add, size_t add_len,
|
H A D | gcm.h | 150 * \param add The buffer holding the additional data. This must be of at 175 const unsigned char *add, 196 * \param add The buffer holding the additional data. This must be of at 219 const unsigned char *add, 236 * \param add The buffer holding the additional data, or \c NULL 239 * \p add may be \c NULL. 247 const unsigned char *add,
|
/test/xts/acts/commonlibrary/ets_utils/worker_lib_standard/entry/src/ohosTest/ets/workers/ |
H A D | worker_018.js | 21 data.add(1); 22 data.add(2);
|
/test/xts/acts/commonlibrary/ets_utils/threadWorker_lib_standard/entry/src/ohosTest/ets/workers/ |
H A D | newworker_018.js | 21 data.add(1); 22 data.add(2);
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/drv/cmd_bin/ |
H A D | cmd_entry_32.S | 49 add r2, r0, r2 65 add r0, r0, #4
|
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ddr_init/boot/ |
H A D | start.S | 120 add r0, r0, r1 162 add r2, r0, r2 175 add r0, pc, #4
|
H A D | uart.S | 21 add a3, a3, #13 51 add a1, a1, #1
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/boot/ |
H A D | start.S | 120 add r0, r0, r1 162 add r2, r0, r2 175 add r0, pc, #4
|
H A D | uart.S | 21 add a3, a3, #13 51 add a1, a1, #1
|
/device/soc/rockchip/common/vendor/drivers/gpu/drm/rockchip/ebc-dev/ |
H A D | ebc_dev_v8.S | 37 add x16, x16, 24 58 add x15, x15, 1 60 add x29, sp, 0 99 add x8, x0, x8 102 add x8, x8, 4 104 add x20, x3, 8 120 add x21, x22, x11 126 add x7, x7, x22 149 add w25, w25, w22, uxtb 153 add w2 [all...] |
/device/qemu/riscv32_virt/liteos_m/board/driver/ |
H A D | virtnet.c | 347 uint16_t add, idx, head, tmp; in LowLevelOutput() local 357 add = pbuf_clen(p) + 1; in LowLevelOutput() 358 if (add > trans->qsz) { in LowLevelOutput() 359 PRINT_ERR("packet pbuf_clen %u larger than supported %u\n", add - 1, trans->qsz - 1); in LowLevelOutput() 363 head = GetTxFreeEntry(nic, add); in LowLevelOutput() 377 nic->tbufRec[idx].count = add; in LowLevelOutput() 585 PRINT_ERR("add virtio-mmio net device failed\n"); in VirtnetInit()
|
H A D | virtinput.c | 159 uint16_t add = 0; in VirtinHandleEv() local 171 q->avail->ring[(q->avail->index + add++) % q->qsz] = idx; in VirtinHandleEv() 175 q->avail->index += add; in VirtinHandleEv()
|
/test/xts/acts/ |
H A D | get_dependency.py | 96 visited.add(node) 138 depends_list.add("acts")
|
/test/xts/acts/demo/test_rust_demo/test/ |
H A D | test.rs | 18 assert_eq!(test_rust_st_add::add(3, 2), 5); in test_add()
|
/test/xts/acts/demo/test_rust_demo/src/ |
H A D | lib.rs | 17 /// pub add 18 pub fn add(a: i32, b: i32) -> i32 { in add() functions
|
/device/soc/rockchip/common/vendor/drivers/gpu/drm/rockchip/ebc-dev/epdlut/ |
H A D | pvi_waveform_v8.S | 26 add x29, sp, 0 33 add x1, x19, :lo12:.LANCHOR0 87 add x19, x19, :lo12:.LANCHOR0 88 add x19, x19, 12 162 add x0, x0, :lo12:.LC1 216 add x0, x19, :lo12:.LANCHOR0 245 add x0, x19, :lo12:.LANCHOR0 277 add x19, x19, :lo12:.LANCHOR0 288 add x19, x19, :lo12:.LANCHOR0 294 add x1 [all...] |
/test/xts/acts/commonlibrary/ets_utils/atomics_lib_standard/entry/src/ohosTest/ets/workers/ |
H A D | worker031.js | 22 Atomics.add(int32, 0, 1);
|
H A D | worker030.js | 22 Atomics.add(int32, 0, 1);
|
H A D | worker020.js | 23 Atomics.add(int32, 0 ,1);
|
/device/qemu/drivers/virtio/ |
H A D | virtinput.c | 146 uint16_t add = 0; in VirtinHandleEv() local 158 q->avail->ring[(q->avail->index + add++) % q->qsz] = idx; in VirtinHandleEv() 162 q->avail->index += add; in VirtinHandleEv()
|
/device/qemu/arm_mps2_an386/liteos_m/board/ |
H A D | startup.s | 57 add r0, r0, #4
|
/device/qemu/arm_mps3_an547/liteos_m/board/ |
H A D | startup.s | 56 add r0, r0, #4
|