| /xsrc/external/mit/MesaLib/dist/src/freedreno/rnn/ |
| aprintf.c | 31 size_t sz = vsnprintf(0, 0, format, va); local 33 char *res = malloc(sz + 1); 35 vsnprintf(res, sz + 1, format, va);
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/isa/ |
| ir3-disasm.c | 47 size_t sz; local 48 void *raw = os_read_file(argv[1], &sz); 50 isa_decode(raw, sz, stdout, &(struct isa_decode_options) {
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/computerator/ |
| ir3_asm.c | 52 unsigned sz = v->info.size; local 54 v->bo = fd_bo_new(c->dev, sz, 0, "%s", ir3_shader_stage(v)); 56 memcpy(fd_bo_map(v->bo), kernel->bin, sz); local
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| st_atom_stipple.c | 68 const GLuint sz = sizeof(st->state.poly_stipple); local 69 assert(sz == sizeof(ctx->PolygonStipple)); 71 if (memcmp(st->state.poly_stipple, ctx->PolygonStipple, sz)) { 75 memcpy(st->state.poly_stipple, ctx->PolygonStipple, sz);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| st_atom_stipple.c | 68 const GLuint sz = sizeof(st->state.poly_stipple); local 69 assert(sz == sizeof(ctx->PolygonStipple)); 71 if (memcmp(st->state.poly_stipple, ctx->PolygonStipple, sz)) { 75 memcpy(st->state.poly_stipple, ctx->PolygonStipple, sz);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/ |
| binary.cpp | 59 _proc(binary::size_t &sz, const T &x) { 60 _serializer<T>::proc(sz, x); 78 proc(binary::size_t &sz, const T &x) { 79 sz += sizeof(x); 105 proc(binary::size_t &sz, const std::vector<T> &v) { 106 sz += sizeof(uint32_t); 109 _proc<T>(sz, v[i]); 132 proc(binary::size_t &sz, const std::vector<T> &v) { 133 sz += sizeof(uint32_t) + sizeof(T) * v.size(); 153 proc(binary::size_t &sz, const std::string &s) 239 size_t sz = 0; local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/ |
| module.cpp | 59 _proc(module::size_t &sz, const T &x) { 60 _serializer<T>::proc(sz, x); 78 proc(module::size_t &sz, const T &x) { 79 sz += sizeof(x); 105 proc(module::size_t &sz, const std::vector<T> &v) { 106 sz += sizeof(uint32_t); 109 _proc<T>(sz, v[i]); 132 proc(module::size_t &sz, const std::vector<T> &v) { 133 sz += sizeof(uint32_t) + sizeof(T) * v.size(); 153 proc(module::size_t &sz, const std::string &s) 224 size_t sz = 0; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/valhall/test/ |
| test-disassembler.c | 71 size_t sz = 0; local 85 FILE *outputp = open_memstream(&output, &sz);
|
| /xsrc/external/mit/libXi/dist/src/ |
| XIQueryDevice.c | 91 size_t sz; local 116 sz = size_classes((xXIAnyInfo*)ptr, nclasses); 117 lib->classes = Xmalloc(sz);
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/drm/ |
| msm_bo.c | 136 int sz; local 141 sz = vsnprintf(buf, sizeof(buf), fmt, ap); 144 req.len = MIN2(sz, sizeof(buf));
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/ |
| r200_cmdbuf.c | 243 int sz = 1 + (nr >> 1) * 3 + (nr & 1) * 2; local 250 BEGIN_BATCH(sz+2+ (nr*2)); 251 OUT_BATCH_PACKET3(R200_CP_CMD_3D_LOAD_VBPNTR, sz - 1);
|
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/drm/ |
| msm_bo.c | 127 int sz; local 132 sz = vsnprintf(buf, sizeof(buf), fmt, ap); 135 req.len = MIN2(sz, sizeof(buf));
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/ |
| pan_trace.c | 53 size_t sz; member in struct:pantrace_memory 99 pantrace_mmap(mali_ptr gpu, void *cpu, size_t sz, char *label) 127 mem->sz = sz; 143 fwrite(pos->cpu, 1, pos->sz, fp);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/ |
| r200_cmdbuf.c | 243 int sz = 1 + (nr >> 1) * 3 + (nr & 1) * 2; local 250 BEGIN_BATCH(sz+2+ (nr*2)); 251 OUT_BATCH_PACKET3(R200_CP_CMD_3D_LOAD_VBPNTR, sz - 1);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sb/ |
| sb_psi_ops.cpp | 75 int sz = ns.size(); local 76 assert(sz && (sz % 3 == 0)); 84 for (int i = sz - 1; i >= 0; i -= 3) {
|
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| brw_vec4_surface_builder.cpp | 102 const unsigned sz = header_sz + addr_sz + src_sz; local 105 const dst_reg payload = bld.vgrf(BRW_REGISTER_TYPE_UD, sz); 129 inst->mlen = sz;
|
| /xsrc/external/mit/MesaLib/dist/src/intel/tools/ |
| i965_disasm.c | 96 long sz = i965_disasm_get_file_size(fp); local 97 if (sz < 0) 100 *end = (size_t)sz;
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| brw_curbe.c | 202 const GLuint sz = brw->curbe.total_size; local 203 const GLuint bufsz = sz * 16 * sizeof(GLfloat); 214 if (sz == 0) { 278 for (i = 0; i < sz*16; i+=4)
|
| gfx7_l3_state.c | 198 const unsigned sz = intel_get_l3_config_urb_size(devinfo, cfg); local 200 if (brw->urb.size != sz) { 201 brw->urb.size = sz;
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/ |
| radeon_maos_vbtmp.h | 280 int sz = 3; local 281 if (DO_W) sz++; 282 if (DO_NORM) sz += 3; 283 if (DO_RGBA) sz++; 284 if (DO_SPEC_OR_FOG) sz++; 285 if (DO_TEX0) sz += 2; 286 if (DO_TEX0 && DO_PTEX) sz++; 287 if (DO_TEX1) sz += 2; 288 if (DO_TEX1 && DO_PTEX) sz++; 289 if (DO_TEX2) sz += 2 [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/ |
| pan_shader.c | 114 unsigned sz = glsl_count_attribute_slots(var->type, FALSE); local 144 for (int c = 0; c < sz; ++c) { 150 *varying_count = MAX2(*varying_count, loc + sz);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/pandecode/ |
| cmdline.c | 96 long sz = ftell(fp); local 99 char *buf = malloc(sz); 101 fread(buf, 1, sz, fp); 113 mapped_mem->length = sz;
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/sb/ |
| sb_psi_ops.cpp | 75 int sz = ns.size(); local 76 assert(sz && (sz % 3 == 0)); 84 for (int i = sz - 1; i >= 0; i -= 3) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/common/ |
| gen_l3_config.c | 186 float sz = 0; local 189 sz += w.w[i]; 192 w.w[i] /= sz;
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| brw_vec4_surface_builder.cpp | 102 const unsigned sz = header_sz + addr_sz + src_sz; local 105 const dst_reg payload = bld.vgrf(BRW_REGISTER_TYPE_UD, sz); 129 inst->mlen = sz;
|