/external/mesa3d/src/mapi/mapi/ |
H A D | table.h | 58 mapi_func *funcs = (mapi_func *) tbl; local 59 funcs[slot] = func; 68 const mapi_func *funcs = (const mapi_func *) tbl; local 69 return funcs[slot];
|
/external/pdfium/third_party/freetype/src/type1/ |
H A D | t1parse.h | 79 #define T1_Add_Table( p, i, o, l ) (p)->funcs.add( (p), i, o, l ) 83 if ( (p)->funcs.done ) \ 84 (p)->funcs.done( p ); \ 89 if ( (p)->funcs.release ) \ 90 (p)->funcs.release( p ); \ 94 #define T1_Skip_Spaces( p ) (p)->root.funcs.skip_spaces( &(p)->root ) 95 #define T1_Skip_PS_Token( p ) (p)->root.funcs.skip_PS_token( &(p)->root ) 97 #define T1_ToInt( p ) (p)->root.funcs.to_int( &(p)->root ) 98 #define T1_ToFixed( p, t ) (p)->root.funcs.to_fixed( &(p)->root, t ) 101 (p)->root.funcs [all...] |
H A D | t1objs.c | 82 PSH_Globals_Funcs funcs; local 85 funcs = T1_Size_Get_Globals_Funcs( size ); 86 if ( funcs ) 87 funcs->destroy( (PSH_Globals)size->root.internal ); 99 PSH_Globals_Funcs funcs = T1_Size_Get_Globals_Funcs( size ); local 102 if ( funcs ) 108 error = funcs->create( size->root.face->memory, 123 PSH_Globals_Funcs funcs = T1_Size_Get_Globals_Funcs( size ); local 128 if ( funcs ) 129 funcs 170 T1_Hints_Funcs funcs; local [all...] |
/external/nanopb-c/tests/alltypes_callback/ |
H A D | decode_alltypes_callback.c | 224 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 D | encode_alltypes_callback.c | 208 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 D | cidparse.h | 96 (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 D | cidobjs.c | 75 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/nanopb-c/tests/callbacks/ |
H A D | encode_callbacks.c | 71 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 D | decode_callbacks.c | 73 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 D | kgsl_device.c | 45 static struct fd_device_funcs funcs = { variable in typeref:struct:fd_device_funcs 62 dev->funcs = &funcs;
|
/external/libdrm/freedreno/msm/ |
H A D | msm_device.c | 45 static struct fd_device_funcs funcs = { variable in typeref:struct:fd_device_funcs 62 dev->funcs = &funcs;
|
/external/libdrm/freedreno/ |
H A D | freedreno_pipe.c | 46 pipe = dev->funcs->pipe_new(dev, id); 64 pipe->funcs->destroy(pipe); 70 return pipe->funcs->get_param(pipe, param, value); 75 return pipe->funcs->wait(pipe, timestamp);
|
H A D | freedreno_ringbuffer.c | 44 ring = pipe->funcs->ringbuffer_new(pipe, size); 50 ring->start = ring->funcs->hostptr(ring); 60 ring->funcs->destroy(ring); 79 if (ring->funcs->reset) 80 ring->funcs->reset(ring); 86 return ring->funcs->flush(ring, ring->last_start); 97 ring->funcs->emit_reloc(ring, reloc); 106 ring->funcs->emit_reloc_ring(ring, target, end); 145 return ring->funcs->flush(ring, marker->cur);
|
H A D | freedreno_priv.h | 86 struct fd_device_funcs *funcs; member in struct:fd_device 110 struct fd_pipe_funcs *funcs; member in struct:fd_pipe 144 struct fd_bo_funcs *funcs; member in struct:fd_bo
|
/external/libdrm/radeon/ |
H A D | radeon_cs.c | 12 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 D | radeon_bo.c | 52 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/libunwind/tests/ |
H A D | test-static-link-gen.c | 34 static void *funcs[] = variable 57 printf (__FILE__": funcs[0]=%p\n", funcs[0]);
|
H A D | test-static-link-loc.c | 52 static void *funcs[] = variable 80 printf (__FILE__": funcs[0]=%p\n", funcs[0]);
|
/external/boringssl/src/crypto/ |
H A D | ex_data.c | 136 CRYPTO_EX_DATA_FUNCS *funcs; local 139 funcs = OPENSSL_malloc(sizeof(CRYPTO_EX_DATA_FUNCS)); 140 if (funcs == NULL) { 145 funcs->argl = argl; 146 funcs->argp = argp; 147 funcs->new_func = new_func; 148 funcs->dup_func = dup_func; 149 funcs->free_func = free_func; 158 !sk_CRYPTO_EX_DATA_FUNCS_push(ex_data_class->meth, funcs)) { 160 OPENSSL_free(funcs); [all...] |
/external/selinux/libsemanage/src/ |
H A D | handle.c | 367 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...] |
H A D | modules.c | 110 if (sh->funcs->install == NULL) { 123 return sh->funcs->install(sh, module_data, data_len, name, ext_lang); 129 if (sh->funcs->install_file == NULL) { 142 return sh->funcs->install_file(sh, module_name); 184 if (sh->funcs->remove == NULL) { 196 return sh->funcs->remove(sh, module_name); 202 if (sh->funcs->list == NULL) { 209 return sh->funcs->list(sh, modinfo, num_modules); 788 if (sh->funcs->get_enabled == NULL) { 797 return sh->funcs [all...] |
/external/mesa3d/src/mapi/glapi/gen/ |
H A D | remap_helper.py | 149 funcs = [] 153 funcs.append(f) 154 if not funcs: 157 for f in funcs:
|
/external/boringssl/src/crypto/asn1/ |
H A D | tasn_new.c | 94 const ASN1_AUX *aux = it->funcs; 112 ef = it->funcs; 121 cf = it->funcs; 237 ef = it->funcs; 333 if (it->funcs) 335 const ASN1_PRIMITIVE_FUNCS *pf = it->funcs; 382 if (it && it->funcs) 384 const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
|
/external/freetype/src/pshinter/ |
H A D | pshrec.h | 150 t1_hints_funcs_init( T1_Hints_FuncsRec* funcs ); variable 154 t2_hints_funcs_init( T2_Hints_FuncsRec* funcs ); variable
|
/external/pdfium/third_party/freetype/src/pshinter/ |
H A D | pshrec.h | 154 t1_hints_funcs_init( T1_Hints_FuncsRec* funcs ); variable 158 t2_hints_funcs_init( T2_Hints_FuncsRec* funcs ); variable
|