Home
last modified time | relevance | path

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

/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/C/
DAST.stg233 RETURN_TYPE_<label> * tcopy;
235tcopy = (RETURN_TYPE_<label> *)ANTLR3_MALLOC(sizeof(RETURN_TYPE_<label>)); /* Note no memory alloc…
236 ANTLR3_MEMCPY((void *)(tcopy), (const void *)&<label>, sizeof(RETURN_TYPE_<label>));
237 …list_<label>->add(list_<label>, (void *)tcopy, freeScope); /* Add whatever the return type is */<…
/external/tensorflow/tensorflow/c/eager/
Dc_api_test.cc509 TF_Tensor* tcopy = TFE_TensorHandleResolve(hcopy, status.get()); in TensorHandleCopyBetweenDevices() local
515 EXPECT_EQ(TF_TensorByteSize(t), TF_TensorByteSize(tcopy)) << tag; in TensorHandleCopyBetweenDevices()
517 0, memcmp(TF_TensorData(t), TF_TensorData(tcopy), TF_TensorByteSize(t))) in TensorHandleCopyBetweenDevices()
519 TF_DeleteTensor(tcopy); in TensorHandleCopyBetweenDevices()
630 TF_Tensor* tcopy = TFE_TensorHandleResolve(hcopy, status.get()); in TensorHandleCopyBetweenTwoGPUDevices() local
633 EXPECT_EQ(TF_TensorByteSize(t), TF_TensorByteSize(tcopy)); in TensorHandleCopyBetweenTwoGPUDevices()
635 0, memcmp(TF_TensorData(t), TF_TensorData(tcopy), TF_TensorByteSize(t))); in TensorHandleCopyBetweenTwoGPUDevices()
636 TF_DeleteTensor(tcopy); in TensorHandleCopyBetweenTwoGPUDevices()
/external/mksh/src/
Dtree.c539 tcopy(struct op *t, Area *ap) in tcopy() function
588 r->left = tcopy(t->left, ap); in tcopy()
589 r->right = tcopy(t->right, ap); in tcopy()
Dexec.c1106 tp->val.t = tcopy(t->left, tp->areap); in define()
Dsh.h2639 struct op *tcopy(struct op *, Area *);