Home
last modified time | relevance | path

Searched refs:pobj (Results 1 – 24 of 24) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/video/
DvktVideoSessionNvUtils.cpp169 NvidiaVulkanVideoDecodeParser* pobj = DE_NULL; in createIfcVulkanVideoDecodeParser() local
171 …(!m_createVulkanVideoDecodeParserFunc(&pobj, codecOperation, stdExtensionVersion, NvidiaParserLogF… in createIfcVulkanVideoDecodeParser()
176 return new ClsVulkanVideoDecodeParser(pobj); in createIfcVulkanVideoDecodeParser()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/
DvktVideoSessionNvUtils.cpp169 NvidiaVulkanVideoDecodeParser* pobj = DE_NULL; in createIfcVulkanVideoDecodeParser() local
171 …(!m_createVulkanVideoDecodeParserFunc(&pobj, codecOperation, stdExtensionVersion, NvidiaParserLogF… in createIfcVulkanVideoDecodeParser()
176 return new ClsVulkanVideoDecodeParser(pobj); in createIfcVulkanVideoDecodeParser()
/third_party/openssl/crypto/x509/
Dv3_cpols.c95 ASN1_OBJECT *pobj; variable
138 if ((pobj = OBJ_txt2obj(cnf->name, 0)) == NULL) {
146 ASN1_OBJECT_free(pobj);
150 pol->policyid = pobj;
179 ASN1_OBJECT *pobj; in policy_section() local
181 if ((pobj = OBJ_txt2obj(cnf->value, 0)) == NULL) { in policy_section()
186 pol->policyid = pobj; in policy_section()
Dx509_lu.c728 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/node/deps/openssl/openssl/crypto/x509/
Dv3_cpols.c95 ASN1_OBJECT *pobj; variable
138 if ((pobj = OBJ_txt2obj(cnf->name, 0)) == NULL) {
146 ASN1_OBJECT_free(pobj);
150 pol->policyid = pobj;
179 ASN1_OBJECT *pobj; in policy_section() local
181 if ((pobj = OBJ_txt2obj(cnf->value, 0)) == NULL) { in policy_section()
186 pol->policyid = pobj; in policy_section()
Dx509_lu.c728 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/libwebsockets/lib/core-net/
Dlws-dsh.c286 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/libdrm/nouveau/
Dnouveau.c304 struct nouveau_object **pobj) in nouveau_object_new() argument
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()
/third_party/python/Modules/_ctypes/
D_ctypes_test.c1024 static IUnknown *pobj; in KeepObject() local
1027 if (pobj) in KeepObject()
1028 pobj->lpVtbl->Release(pobj); in KeepObject()
1029 pobj = punk; in KeepObject()
/third_party/python/Objects/
Dcomplexobject.c434 to_complex(PyObject **pobj, Py_complex *pc) in to_complex() argument
436 PyObject *obj = *pobj; in to_complex()
442 *pobj = NULL; in to_complex()
452 *pobj = Py_NotImplemented; in to_complex()
/third_party/mesa3d/src/broadcom/vulkan/
Dv3dv_cmd_buffer.c211 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() argument
229 assert(pobj && pobj->obj && pobj->destroy_cb); in cmd_buffer_destroy_private_obj()
230 pobj->destroy_cb(v3dv_device_to_handle(cmd_buffer->device), in cmd_buffer_destroy_private_obj()
231 pobj->obj, in cmd_buffer_destroy_private_obj()
[all …]
Dv3dv_private.h1478 uint64_t pobj,
Dv3dv_meta_copy.c1214 uint64_t pobj, in destroy_update_buffer_cb() argument
1218 struct v3dv_bo *bo = (struct v3dv_bo *)((uintptr_t) pobj); in destroy_update_buffer_cb()
/third_party/mesa3d/src/gallium/frontends/clover/api/
Dsampler.cpp57 delete pobj(d_s); in clReleaseSampler()
Dqueue.cpp66 delete pobj(d_q); in clReleaseCommandQueue()
Dkernel.cpp89 delete pobj(d_kern); in clReleaseKernel()
157 auto &dev = (d_dev ? *pobj(d_dev) : unique(kern.program().devices())); in clGetKernelWorkGroupInfo()
Dcontext.cpp105 delete pobj(d_ctx); in clReleaseContext()
Devent.cpp159 delete pobj(d_ev); in clReleaseEvent()
Dmemory.cpp557 delete pobj(d_mem); in clReleaseMemObject()
Dprogram.cpp259 delete pobj(d_prog); in clReleaseProgram()
/third_party/mesa3d/src/gallium/frontends/clover/core/
Dobject.hpp161 pobj(D *d) { in pobj() function
Dkernel.cpp469 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/
Dwindbg.js326 let pobj = poi(location.address); // handles use uncompressed pointers
327 print_object(pobj);
/third_party/python/Modules/
Dsocketmodule.c6436 PyObject *pobj = (PyObject *)NULL; local
6447 kwnames, &hobj, &pobj, &family, &socktype,
6466 if (PyLong_CheckExact(pobj)) {
6467 long value = PyLong_AsLong(pobj);
6472 } else if (PyUnicode_Check(pobj)) {
6473 pptr = PyUnicode_AsUTF8(pobj);
6476 } else if (PyBytes_Check(pobj)) {
6477 pptr = PyBytes_AS_STRING(pobj);
6478 } else if (pobj == Py_None) {
6495 hobj, pobj, family, socktype, protocol) < 0) {