Searched refs:funcs (Results 1 - 25 of 180) sorted by relevance

12345678

/external/skia/src/sksl/ir/
H A DSkSLUnresolvedFunction.h19 UnresolvedFunction(std::vector<const FunctionDeclaration*> funcs) argument
20 : INHERITED(Position(), kUnresolvedFunction_Kind, funcs[0]->fName)
21 , fFunctions(std::move(funcs)) {
23 for (auto func : funcs) {
/external/mesa3d/src/mapi/
H A Dtable.h67 mapi_func *funcs = (mapi_func *) tbl; local
68 funcs[slot] = func;
77 const mapi_func *funcs = (const mapi_func *) tbl; local
78 return funcs[slot];
/external/nanopb-c/tests/alltypes_callback/
H A Ddecode_alltypes_callback.c224 alltypes.req_int32.funcs.decode = &read_varint;
227 alltypes.req_int64.funcs.decode = &read_varint;
230 alltypes.req_uint32.funcs.decode = &read_varint;
233 alltypes.req_uint32.funcs.decode = &read_varint;
236 alltypes.req_uint64.funcs.decode = &read_varint;
239 alltypes.req_sint32.funcs.decode = &read_svarint;
242 alltypes.req_sint64.funcs.decode = &read_svarint;
245 alltypes.req_bool.funcs.decode = &read_varint;
248 alltypes.req_fixed32.funcs.decode = &read_fixed32;
251 alltypes.req_sfixed32.funcs
[all...]
H A Dencode_alltypes_callback.c208 alltypes.req_int32.funcs.encode = &write_varint;
211 alltypes.req_int64.funcs.encode = &write_varint;
214 alltypes.req_uint32.funcs.encode = &write_varint;
217 alltypes.req_uint32.funcs.encode = &write_varint;
220 alltypes.req_uint64.funcs.encode = &write_varint;
223 alltypes.req_sint32.funcs.encode = &write_svarint;
226 alltypes.req_sint64.funcs.encode = &write_svarint;
229 alltypes.req_bool.funcs.encode = &write_varint;
232 alltypes.req_fixed32.funcs.encode = &write_fixed32;
235 alltypes.req_sfixed32.funcs
[all...]
/external/pdfium/third_party/freetype/src/cid/
H A Dcidparse.h96 (p)->root.funcs.skip_spaces( &(p)->root )
98 (p)->root.funcs.skip_PS_token( &(p)->root )
100 #define cid_parser_to_int( p ) (p)->root.funcs.to_int( &(p)->root )
101 #define cid_parser_to_fixed( p, t ) (p)->root.funcs.to_fixed( &(p)->root, t )
104 (p)->root.funcs.to_coord_array( &(p)->root, m, c )
106 (p)->root.funcs.to_fixed_array( &(p)->root, m, f, t )
108 (p)->root.funcs.to_token( &(p)->root, t )
110 (p)->root.funcs.to_token_array( &(p)->root, t, m, c )
113 (p)->root.funcs.load_field( &(p)->root, f, o, 0, 0 )
115 (p)->root.funcs
[all...]
H A Dcidobjs.c75 T1_Hints_Funcs funcs; local
78 funcs = pshinter->get_t1_funcs( module );
79 slot->internal->glyph_hints = (void*)funcs;
118 PSH_Globals_Funcs funcs; local
121 funcs = cid_size_get_globals_funcs( size );
122 if ( funcs )
123 funcs->destroy( (PSH_Globals)cidsize->internal );
135 PSH_Globals_Funcs funcs = cid_size_get_globals_funcs( size ); local
138 if ( funcs )
146 error = funcs
159 PSH_Globals_Funcs funcs; local
[all...]
/external/pdfium/third_party/freetype/src/type1/
H A Dt1parse.h79 #define T1_Add_Table( p, i, o, l ) (p)->funcs.add( (p), i, o, l )
83 if ( (p)->funcs.release ) \
84 (p)->funcs.release( p ); \
88 #define T1_Skip_Spaces( p ) (p)->root.funcs.skip_spaces( &(p)->root )
89 #define T1_Skip_PS_Token( p ) (p)->root.funcs.skip_PS_token( &(p)->root )
91 #define T1_ToInt( p ) (p)->root.funcs.to_int( &(p)->root )
92 #define T1_ToFixed( p, t ) (p)->root.funcs.to_fixed( &(p)->root, t )
95 (p)->root.funcs.to_coord_array( &(p)->root, m, c )
97 (p)->root.funcs.to_fixed_array( &(p)->root, m, f, t )
99 (p)->root.funcs
[all...]
/external/nanopb-c/tests/callbacks/
H A Dencode_callbacks.c71 testmessage.stringvalue.funcs.encode = &encode_string;
72 testmessage.int32value.funcs.encode = &encode_int32;
73 testmessage.fixed32value.funcs.encode = &encode_fixed32;
74 testmessage.fixed64value.funcs.encode = &encode_fixed64;
77 testmessage.submsg.stringvalue.funcs.encode = &encode_string;
78 testmessage.submsg.int32value.funcs.encode = &encode_int32;
79 testmessage.submsg.fixed32value.funcs.encode = &encode_fixed32;
80 testmessage.submsg.fixed64value.funcs.encode = &encode_fixed64;
82 testmessage.repeatedstring.funcs.encode = &encode_repeatedstring;
H A Ddecode_callbacks.c73 testmessage.submsg.stringvalue.funcs.decode = &print_string;
75 testmessage.submsg.int32value.funcs.decode = &print_int32;
77 testmessage.submsg.fixed32value.funcs.decode = &print_fixed32;
79 testmessage.submsg.fixed64value.funcs.decode = &print_fixed64;
82 testmessage.stringvalue.funcs.decode = &print_string;
84 testmessage.int32value.funcs.decode = &print_int32;
86 testmessage.fixed32value.funcs.decode = &print_fixed32;
88 testmessage.fixed64value.funcs.decode = &print_fixed64;
90 testmessage.repeatedstring.funcs.decode = &print_string;
/external/libdrm/freedreno/kgsl/
H A Dkgsl_device.c45 static const struct fd_device_funcs funcs = { variable in typeref:struct:fd_device_funcs
62 dev->funcs = &funcs;
/external/libdrm/freedreno/
H A Dfreedreno_ringbuffer.c44 ring = pipe->funcs->ringbuffer_new(pipe, size);
49 ring->start = ring->funcs->hostptr(ring);
60 ring->funcs->destroy(ring);
79 if (ring->funcs->reset)
80 ring->funcs->reset(ring);
85 return ring->funcs->flush(ring, ring->last_start, -1, NULL);
91 return ring->funcs->flush(ring, ring->last_start, in_fence_fd, out_fence_fd);
96 assert(ring->funcs->grow); /* unsupported on kgsl */
102 ring->funcs->grow(ring, ring->size);
104 ring->start = ring->funcs
[all...]
H A Dfreedreno_pipe.c47 pipe = dev->funcs->pipe_new(dev, id);
68 pipe->funcs->destroy(pipe);
74 return pipe->funcs->get_param(pipe, param, value);
85 return pipe->funcs->wait(pipe, timestamp, timeout);
/external/libdrm/radeon/
H A Dradeon_cs.c12 struct radeon_cs_int *csi = csm->funcs->cs_create(csm, ndw);
23 return csi->csm->funcs->cs_write_reloc(csi,
35 return csi->csm->funcs->cs_begin(csi, ndw, file, func, line);
43 return csi->csm->funcs->cs_end(csi, file, func, line);
49 return csi->csm->funcs->cs_emit(csi);
55 return csi->csm->funcs->cs_destroy(csi);
61 return csi->csm->funcs->cs_erase(csi);
67 return csi->csm->funcs->cs_need_flush(csi);
73 csi->csm->funcs->cs_print(csi, file);
H A Dradeon_bo.c52 bo = bom->funcs->bo_open(bom, handle, size, alignment, domains, flags);
60 boi->bom->funcs->bo_ref(boi);
70 return boi->bom->funcs->bo_unref(boi);
76 return boi->bom->funcs->bo_map(boi, write);
82 return boi->bom->funcs->bo_unmap(boi);
88 if (!boi->bom->funcs->bo_wait)
90 return boi->bom->funcs->bo_wait(boi);
96 return boi->bom->funcs->bo_is_busy(boi, domain);
104 return boi->bom->funcs->bo_set_tiling(boi, tiling_flags, pitch);
112 return boi->bom->funcs
[all...]
/external/libdrm/freedreno/msm/
H A Dmsm_device.c46 static const struct fd_device_funcs funcs = { variable in typeref:struct:fd_device_funcs
63 dev->funcs = &funcs;
/external/libunwind/tests/
H A Dtest-static-link-gen.c34 static void *funcs[] = variable
57 printf (__FILE__": funcs[0]=%p\n", funcs[0]);
H A Dtest-static-link-loc.c52 static void *funcs[] = variable
80 printf (__FILE__": funcs[0]=%p\n", funcs[0]);
/external/boringssl/src/crypto/
H A Dex_data.c134 CRYPTO_EX_DATA_FUNCS *funcs; local
137 funcs = OPENSSL_malloc(sizeof(CRYPTO_EX_DATA_FUNCS));
138 if (funcs == NULL) {
143 funcs->argl = argl;
144 funcs->argp = argp;
145 funcs->free_func = free_func;
154 !sk_CRYPTO_EX_DATA_FUNCS_push(ex_data_class->meth, funcs)) {
156 OPENSSL_free(funcs);
/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_query.c51 q->funcs->destroy_query(etna_context(pctx), q);
59 return q->funcs->begin_query(etna_context(pctx), q);
67 q->funcs->end_query(etna_context(pctx), q);
77 return q->funcs->get_query_result(etna_context(pctx), q, wait, result);
H A Detnaviv_query.h45 const struct etna_query_funcs *funcs; member in struct:etna_query
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_query.h20 const struct nv50_query_funcs *funcs; member in struct:nv50_query
H A Dnv50_query_hw_metric.c74 if (hmq->queries[i]->funcs->destroy_query)
75 hmq->queries[i]->funcs->destroy_query(nv50, hmq->queries[i]);
87 ret = hmq->queries[i]->funcs->begin_query(nv50, hmq->queries[i]);
101 hmq->queries[i]->funcs->end_query(nv50, hmq->queries[i]);
133 ret = hmq->queries[i]->funcs->get_query_result(nv50, hmq->queries[i],
167 hq->funcs = &hw_metric_query_funcs;
/external/selinux/libsemanage/src/
H A Dhandle.c367 assert(sh != NULL && sh->funcs != NULL
368 && sh->funcs->disconnect != NULL);
372 if (sh->funcs->disconnect(sh) < 0) {
386 if (sh->funcs != NULL && sh->funcs->destroy != NULL)
387 sh->funcs->destroy(sh);
398 assert(sh != NULL && sh->funcs != NULL
399 && sh->funcs->begin_trans != NULL);
408 if (sh->funcs->begin_trans(sh) < 0) {
420 assert(sh != NULL && sh->funcs !
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_query.c59 q->funcs->destroy_query(fd_context(pctx), q);
66 return q->funcs->begin_query(fd_context(pctx), q);
73 q->funcs->end_query(fd_context(pctx), q);
82 return q->funcs->get_query_result(fd_context(pctx), q, wait, result);
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_query.h27 const struct nvc0_query_funcs *funcs; member in struct:nvc0_query

Completed in 3963 milliseconds

12345678