/external/skia/src/sksl/ir/ |
SkSLUnresolvedFunction.h | 19 UnresolvedFunction(std::vector<const FunctionDeclaration*> funcs) 20 : INHERITED(Position(), kUnresolvedFunction_Kind, funcs[0]->fName) 21 , fFunctions(std::move(funcs)) { 23 for (auto func : funcs) {
|
/frameworks/rs/ |
rsDriverLoader.cpp | 54 ret &= fn(RS_HAL_CORE_SHUTDOWN, (void **)&rsc->mHal.funcs.shutdownDriver); 55 ret &= fn(RS_HAL_CORE_SET_PRIORITY, (void **)&rsc->mHal.funcs.setPriority); 56 ret &= fn(RS_HAL_CORE_ALLOC_RUNTIME_MEM, (void **)&rsc->mHal.funcs.allocRuntimeMem); 57 ret &= fn(RS_HAL_CORE_FREE_RUNTIME_MEM, (void **)&rsc->mHal.funcs.freeRuntimeMem); 58 ret &= fn(RS_HAL_CORE_FINISH, (void **)&rsc->mHal.funcs.finish); 60 ret &= fn(RS_HAL_SCRIPT_INIT, (void **)&rsc->mHal.funcs.script.init); 61 ret &= fn(RS_HAL_SCRIPT_INIT_INTRINSIC, (void **)&rsc->mHal.funcs.script.initIntrinsic); 62 ret &= fn(RS_HAL_SCRIPT_INVOKE_FUNCTION, (void **)&rsc->mHal.funcs.script.invokeFunction); 63 ret &= fn(RS_HAL_SCRIPT_INVOKE_ROOT, (void **)&rsc->mHal.funcs.script.invokeRoot); 64 ret &= fn(RS_HAL_SCRIPT_INVOKE_FOR_EACH, (void **)&rsc->mHal.funcs.script.invokeForEach) [all...] |
rsScriptGroup2.cpp | 9 if (mRSC->mHal.funcs.scriptgroup.destroy) { 10 mRSC->mHal.funcs.scriptgroup.destroy(mRSC, this); 15 if (rsc->mHal.funcs.scriptgroup.execute) { 16 rsc->mHal.funcs.scriptgroup.execute(rsc, this); 29 if (rsc->mHal.funcs.scriptgroup.init) { 30 rsc->mHal.funcs.scriptgroup.init(rsc, group);
|
rsProgramVertex.cpp | 29 mRSC->mHal.funcs.vertex.init(mRSC, this, mUserShader, mUserShaderLen, 34 mRSC->mHal.funcs.vertex.destroy(mRSC, this); 48 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D( 58 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]); 63 rsc->mHal.funcs.vertex.setActive(rsc, this); 77 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D( 81 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]); 95 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D( 99 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]); 113 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D [all...] |
/external/mesa3d/src/mapi/ |
table.h | 67 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/ |
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.decode = &read_fixed32 [all...] |
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.encode = &write_fixed32 [all...] |
/external/pdfium/third_party/freetype/src/cid/ |
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.load_field_table( &(p)->root, f, o, 0, 0 [all...] |
/external/pdfium/third_party/freetype/src/type1/ |
t1parse.h | 79 #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.to_token( &(p)->root, t [all...] |
/external/nanopb-c/tests/callbacks/ |
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;
|
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/ |
kgsl_device.c | 45 static const struct fd_device_funcs funcs = { variable in typeref:struct:fd_device_funcs 62 dev->funcs = &funcs;
|
/external/libdrm/freedreno/ |
freedreno_ringbuffer.c | 44 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->hostptr(ring) [all...] |
freedreno_pipe.c | 47 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/ |
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);
|
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->bo_get_tiling(boi, tiling_flags, pitch) [all...] |
/device/linaro/bootloader/arm-trusted-firmware/drivers/io/ |
io_storage.c | 69 int result = (dev != NULL) && (dev->funcs != NULL) && 70 (dev->funcs->type != NULL) && 71 (dev->funcs->type() < IO_TYPE_MAX); 209 if (dev->funcs->dev_init != NULL) { 210 result = dev->funcs->dev_init(dev, init_params); 230 if (dev->funcs->dev_close != NULL) { 231 result = dev->funcs->dev_close(dev); 257 assert(dev->funcs->open != NULL); 258 result = dev->funcs->open(dev, spec, entity); 280 if (dev->funcs->seek != NULL [all...] |
/external/libdrm/freedreno/msm/ |
msm_device.c | 46 static const struct fd_device_funcs funcs = { variable in typeref:struct:fd_device_funcs 63 dev->funcs = &funcs;
|
/external/libunwind/tests/ |
test-static-link-gen.c | 34 static void *funcs[] = variable 57 printf (__FILE__": funcs[0]=%p\n", funcs[0]);
|
test-static-link-loc.c | 52 static void *funcs[] = variable 80 printf (__FILE__": funcs[0]=%p\n", funcs[0]);
|
/prebuilts/ndk/r11/sources/cxx-stl/stlport/src/ |
cxa.c | 165 struct exit_function_list *funcs; local 171 for (funcs = __exit_funcs; funcs; funcs = funcs->next) { 174 for (f = &funcs->fns[funcs->idx - 1]; f >= &funcs->fns[0]; --f) {
|
/prebuilts/ndk/r13/sources/cxx-stl/stlport/src/ |
cxa.c | 165 struct exit_function_list *funcs; local 171 for (funcs = __exit_funcs; funcs; funcs = funcs->next) { 174 for (f = &funcs->fns[funcs->idx - 1]; f >= &funcs->fns[0]; --f) {
|
/toolchain/binutils/binutils-2.25/libiberty/ |
pex-common.c | 54 const struct pex_funcs *funcs) 76 obj->funcs = funcs; 129 /* This isn't obj->funcs->close because we got the 131 obj->funcs. Calling close here is just like what 191 in = obj->funcs->open_read (obj, obj->next_input_name, 256 if (obj->funcs->pipe (obj, p, (flags & PEX_BINARY_OUTPUT) != 0) < 0) 269 out = obj->funcs->open_write (obj, outname, 306 if (obj->funcs->pipe (obj, p, (flags & PEX_BINARY_ERROR) != 0) < 0) 323 errdes = obj->funcs->open_write (obj, errname [all...] |
/external/boringssl/src/crypto/ |
ex_data.c | 134 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);
|
/system/extras/memcpy-perf/ |
Android.mk | 7 LOCAL_SRC_FILES := memcpy-perf.cpp test-funcs.cpp
|