/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/video/ |
H A D | vktVideoSessionNvUtils.cpp | 169 NvidiaVulkanVideoDecodeParser* pobj = DE_NULL; in createIfcVulkanVideoDecodeParser() local 171 if (!m_createVulkanVideoDecodeParserFunc(&pobj, codecOperation, stdExtensionVersion, NvidiaParserLogFunc, 0) || pobj == DE_NULL) in createIfcVulkanVideoDecodeParser() 176 return new ClsVulkanVideoDecodeParser(pobj); in createIfcVulkanVideoDecodeParser()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | v3_cpols.c | 95 ASN1_OBJECT *pobj; 138 if ((pobj = OBJ_txt2obj(cnf->name, 0)) == NULL) { 146 ASN1_OBJECT_free(pobj); 150 pol->policyid = pobj; 179 ASN1_OBJECT *pobj; 181 if ((pobj = OBJ_txt2obj(cnf->value, 0)) == NULL) { 186 pol->policyid = pobj;
|
H A D | x509_lu.c | 728 X509_OBJECT *obj = X509_OBJECT_new(), *pobj = NULL; in X509_STORE_CTX_get1_issuer() local 770 pobj = sk_X509_OBJECT_value(store->objs, i); in X509_STORE_CTX_get1_issuer() 772 if (pobj->type != X509_LU_X509) in X509_STORE_CTX_get1_issuer() 774 if (ctx->check_issued(ctx, x, pobj->data.x509)) { in X509_STORE_CTX_get1_issuer() 777 if (ossl_x509_check_cert_time(ctx, pobj->data.x509, -1)) { in X509_STORE_CTX_get1_issuer() 778 *issuer = pobj->data.x509; in X509_STORE_CTX_get1_issuer() 786 || ASN1_TIME_compare(X509_get0_notAfter(pobj->data.x509), in X509_STORE_CTX_get1_issuer() 788 *issuer = pobj->data.x509; in X509_STORE_CTX_get1_issuer()
|
/third_party/openssl/crypto/x509/ |
H A D | v3_cpols.c | 95 ASN1_OBJECT *pobj; 138 if ((pobj = OBJ_txt2obj(cnf->name, 0)) == NULL) { 146 ASN1_OBJECT_free(pobj); 150 pol->policyid = pobj; 179 ASN1_OBJECT *pobj; 181 if ((pobj = OBJ_txt2obj(cnf->value, 0)) == NULL) { 186 pol->policyid = pobj;
|
H A D | x509_lu.c | 728 X509_OBJECT *obj = X509_OBJECT_new(), *pobj = NULL; in X509_STORE_CTX_get1_issuer() local 770 pobj = sk_X509_OBJECT_value(store->objs, i); in X509_STORE_CTX_get1_issuer() 772 if (pobj->type != X509_LU_X509) in X509_STORE_CTX_get1_issuer() 774 if (ctx->check_issued(ctx, x, pobj->data.x509)) { in X509_STORE_CTX_get1_issuer() 777 if (ossl_x509_check_cert_time(ctx, pobj->data.x509, -1)) { in X509_STORE_CTX_get1_issuer() 778 *issuer = pobj->data.x509; in X509_STORE_CTX_get1_issuer() 786 || ASN1_TIME_compare(X509_get0_notAfter(pobj->data.x509), in X509_STORE_CTX_get1_issuer() 788 *issuer = pobj->data.x509; in X509_STORE_CTX_get1_issuer()
|
/third_party/libdrm/nouveau/ |
H A D | nouveau.c | 304 struct nouveau_object **pobj) in nouveau_object_new() 318 *pobj = obj; in nouveau_object_new() 323 nouveau_object_del(struct nouveau_object **pobj) in nouveau_object_del() argument 325 struct nouveau_object *obj = *pobj; in nouveau_object_del() 329 *pobj = NULL; in nouveau_object_del() 302 nouveau_object_new(struct nouveau_object *parent, uint64_t handle, uint32_t oclass, void *data, uint32_t length, struct nouveau_object **pobj) nouveau_object_new() argument
|
/third_party/python/Modules/_ctypes/ |
H A D | _ctypes_test.c | 1026 static IUnknown *pobj; in EXPORT() local 1029 if (pobj) in EXPORT() 1030 pobj->lpVtbl->Release(pobj); in EXPORT() 1031 pobj = punk; in EXPORT()
|
/third_party/mesa3d/src/gallium/frontends/clover/api/ |
H A D | sampler.cpp | 57 delete pobj(d_s); in clReleaseSampler()
|
H A D | queue.cpp | 66 delete pobj(d_q); in clReleaseCommandQueue()
|
H A D | context.cpp | 105 delete pobj(d_ctx); in clReleaseContext()
|
H A D | kernel.cpp | 89 delete pobj(d_kern); in clReleaseKernel() 157 auto &dev = (d_dev ? *pobj(d_dev) : unique(kern.program().devices())); in clGetKernelWorkGroupInfo()
|
H A D | event.cpp | 159 delete pobj(d_ev); in clReleaseEvent()
|
H A D | program.cpp | 259 delete pobj(d_prog); in clReleaseProgram()
|
H A D | memory.cpp | 557 delete pobj(d_mem); in clReleaseMemObject()
|
/third_party/libwebsockets/lib/core-net/ |
H A D | lws-dsh.c | 286 lws_dsh_free(void **pobj) in lws_dsh_free() argument 288 lws_dsh_obj_t *_o = (lws_dsh_obj_t *)((uint8_t *)(*pobj) - sizeof(*_o)), in lws_dsh_free() 301 *pobj = NULL; in lws_dsh_free()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_cmd_buffer.c | 211 struct v3dv_cmd_buffer_private_obj *pobj = in v3dv_cmd_buffer_add_private_obj() local 212 vk_alloc(&cmd_buffer->device->vk.alloc, sizeof(*pobj), 8, in v3dv_cmd_buffer_add_private_obj() 214 if (!pobj) { in v3dv_cmd_buffer_add_private_obj() 219 pobj->obj = obj; in v3dv_cmd_buffer_add_private_obj() 220 pobj->destroy_cb = destroy_cb; in v3dv_cmd_buffer_add_private_obj() 222 list_addtail(&pobj->list_link, &cmd_buffer->private_objs); in v3dv_cmd_buffer_add_private_obj() 227 struct v3dv_cmd_buffer_private_obj *pobj) in cmd_buffer_destroy_private_obj() 229 assert(pobj && pobj->obj && pobj in cmd_buffer_destroy_private_obj() 226 cmd_buffer_destroy_private_obj(struct v3dv_cmd_buffer *cmd_buffer, struct v3dv_cmd_buffer_private_obj *pobj) cmd_buffer_destroy_private_obj() argument [all...] |
H A D | v3dv_private.h | 1478 uint64_t pobj,
|
H A D | v3dv_meta_copy.c | 1214 uint64_t pobj, in destroy_update_buffer_cb() 1218 struct v3dv_bo *bo = (struct v3dv_bo *)((uintptr_t) pobj); in destroy_update_buffer_cb() 1213 destroy_update_buffer_cb(VkDevice _device, uint64_t pobj, VkAllocationCallbacks *alloc) destroy_update_buffer_cb() argument
|
/third_party/python/Objects/ |
H A D | complexobject.c | 435 to_complex(PyObject **pobj, Py_complex *pc) in to_complex() argument 437 PyObject *obj = *pobj; in to_complex() 443 *pobj = NULL; in to_complex() 453 *pobj = Py_NotImplemented; in to_complex()
|
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
H A D | object.hpp | 161 pobj(D *d) { in pobj() function
|
H A D | kernel.cpp | 469 buf = pobj<buffer>(value ? *(cl_mem *)value : NULL); in set() 556 buf = pobj<buffer>(value ? *(cl_mem *)value : NULL); in set()
|
/third_party/node/deps/v8/tools/ |
H A D | windbg.js | 326 let pobj = poi(location.address); // handles use uncompressed pointers 327 print_object(pobj);
|
/third_party/python/Modules/ |
H A D | socketmodule.c | 6542 PyObject *pobj = (PyObject *)NULL; local 6553 kwnames, &hobj, &pobj, &family, &socktype, 6572 if (PyLong_CheckExact(pobj)) { 6573 long value = PyLong_AsLong(pobj); 6578 } else if (PyUnicode_Check(pobj)) { 6579 pptr = PyUnicode_AsUTF8(pobj); 6582 } else if (PyBytes_Check(pobj)) { 6583 pptr = PyBytes_AS_STRING(pobj); 6584 } else if (pobj == Py_None) { 6601 hobj, pobj, famil [all...] |