Home
last modified time | relevance | path

Searched refs:add (Results 1 - 25 of 1226) sorted by relevance

12345678910>>...50

/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/
H A Dutlist.h316 #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 Duthash.h200 #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 Dtest_package_select.py28 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 Dccm.h141 * \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 Dgcm.h150 * \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 Dworker_018.js21 data.add(1);
22 data.add(2);
/test/xts/acts/commonlibrary/ets_utils/threadWorker_lib_standard/entry/src/ohosTest/ets/workers/
H A Dnewworker_018.js21 data.add(1);
22 data.add(2);
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/drv/cmd_bin/
H A Dcmd_entry_32.S49 add r2, r0, r2
65 add r0, r0, #4
/drivers/hdf_core/framework/support/platform/src/fwk/
H A Dplatform_manager.c38 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 Dstart.S120 add r0, r0, r1
162 add r2, r0, r2
175 add r0, pc, #4
H A Duart.S21 add a3, a3, #13
51 add a1, a1, #1
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/boot/
H A Dstart.S120 add r0, r0, r1
162 add r2, r0, r2
175 add r0, pc, #4
H A Duart.S21 add a3, a3, #13
51 add a1, a1, #1
/drivers/hdf_core/adapter/khdf/liteos_m/network/src/
H A Dnetbuf_adapter.c261 * 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 Dnetbuf_adapter.c259 * 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 Dvirtnet.c347 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 Debc_dev_v8.S37 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 Dtest.rs18 assert_eq!(test_rust_st_add::add(3, 2), 5); in test_add()
/test/xts/acts/demo/test_rust_demo/src/
H A Dlib.rs17 /// 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 Dworker031.js22 Atomics.add(int32, 0, 1);
H A Dworker030.js22 Atomics.add(int32, 0, 1);
H A Dworker020.js23 Atomics.add(int32, 0 ,1);
/drivers/hdf_core/adapter/khdf/linux/network/src/
H A Dnetbuf_adapter.c167 * @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 Duart_dev_sample.c147 static void AddRemoveUartDev(struct UartHost *host, bool add) in AddRemoveUartDev() argument
167 if (add) { in AddRemoveUartDev()
/test/xts/acts/
H A Dget_dependency.py96 visited.add(node)
138 depends_list.add("acts")

Completed in 11 milliseconds

12345678910>>...50