/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
|
/drivers/hdf_core/framework/support/platform/src/fwk/ |
H A D | platform_manager.c | 38 manager->add = NULL; in PlatformManagerInit() 65 manager->add = NULL; in PlatformManagerUninit() 184 if (manager->add != NULL) { in PlatformManagerAddDevice() 185 ret = manager->add(manager, device); in PlatformManagerAddDevice() 192 PLAT_LOGD("PlatformManagerAddDevice: add dev:%s(%d) to %s success!", in PlatformManagerAddDevice() 196 PLAT_LOGE("PlatformManagerAddDevice: add dev:%s(%d) to %s fail, ret:%d!", in PlatformManagerAddDevice()
|
/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
|
/drivers/hdf_core/adapter/khdf/liteos_m/network/src/ |
H A D | netbuf_adapter.c | 261 * add The pointer to the net buffer queue to add. 264 void NetBufQueueConcat(NetBufQueue *q, NetBufQueue *add) in NetBufQueueConcat() argument 270 if (!NetBufQueueIsEmpty(add)) { in NetBufQueueConcat() 271 DListMerge(&add->dlist, &q->dlist); in NetBufQueueConcat() 272 q->size += add->size; in NetBufQueueConcat() 273 add->size = 0; in NetBufQueueConcat() 346 * Pop head room and add to data buffer 412 * len The length of add data
|
/drivers/hdf_core/adapter/khdf/liteos/network/src/ |
H A D | netbuf_adapter.c | 259 * add The pointer to the net buffer queue to add. 262 void NetBufQueueConcat(NetBufQueue *q, NetBufQueue *add) in NetBufQueueConcat() argument 268 if (!NetBufQueueIsEmpty(add)) { in NetBufQueueConcat() 269 DListMerge(&add->dlist, &q->dlist); in NetBufQueueConcat() 270 q->size += add->size; in NetBufQueueConcat() 271 add->size = 0; in NetBufQueueConcat() 344 * Pop head room and add to data buffer 410 * len The length of add data
|
/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()
|
/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...] |
/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
|
/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);
|
/drivers/hdf_core/adapter/khdf/linux/network/src/ |
H A D | netbuf_adapter.c | 167 * @param add Indicates the pointer to the source network data buffer queue. 171 void NetBufQueueConcat(NetBufQueue *q, NetBufQueue *add) in NetBufQueueConcat() argument 173 skb_queue_splice_init(add, q); in NetBufQueueConcat()
|
/drivers/hdf_core/framework/sample/platform/uart/src/ |
H A D | uart_dev_sample.c | 147 static void AddRemoveUartDev(struct UartHost *host, bool add) in AddRemoveUartDev() argument 167 if (add) { in AddRemoveUartDev()
|
/test/xts/acts/ |
H A D | get_dependency.py | 96 visited.add(node) 138 depends_list.add("acts")
|