HomeSort by: relevance | last modified time | path
    Searched refs:calloc (Results 1 - 25 of 1204) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/util/
strndup.h 46 ptr = (char *) calloc(n + 1, sizeof(char));
os_memory_stdc.h 42 #define os_calloc(_count, _size ) calloc(_count, _size )
  /xsrc/external/mit/MesaLib.old/dist/src/util/
strndup.h 46 ptr = (char *) calloc(n + 1, sizeof(char));
  /xsrc/external/mit/MesaLib/dist/src/panfrost/util/
lcra.c 46 struct lcra_state *l = calloc(1, sizeof(*l));
51 l->alignment = calloc(sizeof(l->alignment[0]), node_count);
52 l->linear = calloc(sizeof(l->linear[0]), node_count * node_count);
53 l->modulus = calloc(sizeof(l->modulus[0]), node_count);
54 l->class = calloc(sizeof(l->class[0]), node_count);
55 l->class_start = calloc(sizeof(l->class_start[0]), class_count);
56 l->class_disjoint = calloc(sizeof(l->class_disjoint[0]), class_count * class_count);
57 l->class_size = calloc(sizeof(l->class_size[0]), class_count);
58 l->spill_cost = calloc(sizeof(l->spill_cost[0]), node_count);
59 l->solutions = calloc(sizeof(l->solutions[0]), node_count)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/freedreno/drm/
msm_device.c 51 msm_dev = calloc(1, sizeof(*msm_dev));
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
test_vec4_dead_code_eliminate.cpp 89 ctx = (struct gl_context *)calloc(1, sizeof(*ctx));
90 compiler = (struct brw_compiler *)calloc(1, sizeof(*compiler));
91 devinfo = (struct gen_device_info *)calloc(1, sizeof(*devinfo));
92 prog_data = (struct brw_vue_prog_data *)calloc(1, sizeof(*prog_data));
test_vec4_copy_propagation.cpp 91 ctx = (struct gl_context *)calloc(1, sizeof(*ctx));
92 compiler = (struct brw_compiler *)calloc(1, sizeof(*compiler));
93 devinfo = (struct gen_device_info *)calloc(1, sizeof(*devinfo));
94 prog_data = (struct brw_vue_prog_data *)calloc(1, sizeof(*prog_data));
  /xsrc/external/mit/libdrm/dist/freedreno/kgsl/
kgsl_device.c 53 kgsl_dev = calloc(1, sizeof(*kgsl_dev));
  /xsrc/external/mit/libdrm/dist/freedreno/msm/
msm_device.c 53 msm_dev = calloc(1, sizeof(*msm_dev));
  /xsrc/external/mit/libxkbfile/dist/src/
XKBfileInt.h 44 #define _XkbCalloc(n,s) calloc((n),(s))
47 #define _XkbTypedCalloc(n,t) ((t *)calloc((n),sizeof(t)))
  /xsrc/external/mit/libxkbui/dist/src/
XKBuiPriv.h 52 #define _XkbCalloc(n,s) calloc((n),(s))
55 #define _XkbTypedCalloc(n,t) ((t *)calloc((n),sizeof(t)))
  /xsrc/external/mit/xf86-video-vmware/dist/vmwgfx/
vmwgfx_xa_composite.c 256 struct vmwgfx_composite *vcomp = calloc(1, sizeof(*vcomp));
261 vcomp->src_spict = calloc(1, a->xa_source_pict_size);
262 vcomp->mask_spict = calloc(1, a->xa_source_pict_size);
263 vcomp->dst_spict = calloc(1, a->xa_source_pict_size);
264 vcomp->src_pict = calloc(1, a->xa_picture_size);
265 vcomp->mask_pict = calloc(1, a->xa_picture_size);
266 vcomp->dst_pict = calloc(1, a->xa_picture_size);
267 vcomp->comp = calloc(1, a->xa_composite_size);
  /xsrc/external/mit/xorg-server/dist/hw/xquartz/mach-startup/
bundle_trampoline.c 55 char *buf = calloc(1, bufsize);
59 buf = calloc(1, bufsize);
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/ramdac/
xf86RamDac.c 44 infoRec = calloc(1, sizeof(RamDacRec));
54 infoRec = calloc(1, sizeof(RamDacHelperRec));
  /xsrc/external/mit/xorg-server/dist/xkb/
XKBAlloc.c 73 compat = calloc(1, sizeof(XkbCompatMapRec));
77 compat->sym_interpret = calloc(nSI, sizeof(XkbSymInterpretRec));
127 xkb->names = calloc(1, sizeof(XkbNamesRec));
140 type->level_names = calloc(type->num_levels, sizeof(Atom));
151 names->keys = calloc((xkb->max_key_code + 1), sizeof(XkbKeyNameRec));
157 names->key_aliases = calloc(nTotalAliases, sizeof(XkbKeyAliasRec));
182 names->radio_groups = calloc(nTotalRG, sizeof(Atom));
261 xkb->ctrls = calloc(1, sizeof(XkbControlsRec));
286 xkb->indicators = calloc(1, sizeof(XkbIndicatorRec));
310 xkb = calloc(1, sizeof(XkbDescRec))
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/xkb/
XKBAlloc.c 73 compat= calloc(1, sizeof(XkbCompatMapRec));
77 compat->sym_interpret= calloc(nSI, sizeof(XkbSymInterpretRec));
126 xkb->names = calloc(1, sizeof(XkbNamesRec));
138 type->level_names= calloc(type->num_levels, sizeof(Atom));
149 names->keys= calloc((xkb->max_key_code+1), sizeof(XkbKeyNameRec));
155 names->key_aliases= calloc(nTotalAliases, sizeof(XkbKeyAliasRec));
177 names->radio_groups= calloc(nTotalRG, sizeof(Atom));
252 xkb->ctrls= calloc(1, sizeof(XkbControlsRec));
278 xkb->indicators= calloc(1, sizeof(XkbIndicatorRec));
302 xkb = calloc(1, sizeof(XkbDescRec))
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/kdrive/src/
kinfo.c 35 ci = calloc(1, sizeof(KdCardInfo));
78 si = calloc(1, sizeof(KdScreenInfo));
112 pi = (KdPointerInfo *) calloc(1, sizeof(KdPointerInfo));
  /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/
agx_dce.c 31 BITSET_WORD *seen = calloc(BITSET_WORDS(ctx->alloc), sizeof(BITSET_WORD));
  /xsrc/external/mit/MesaLib/dist/src/etnaviv/drm/
etnaviv_pipe.c 60 pipe = calloc(1, sizeof(*pipe));
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/
lima_query.c 45 struct lima_query *query = calloc(1, sizeof(*query));
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
radeon_queryobj.h 44 radeon->query.queryobj.cmd = calloc(SZ, sizeof(uint32_t));
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
symbol_table.c 121 struct scope_level *const scope = calloc(1, sizeof(*scope));
186 new_sym = calloc(1, sizeof(*sym));
255 sym = calloc(1, sizeof(*sym));
292 struct _mesa_symbol_table *table = calloc(1, sizeof(*table));
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/
lima_query.c 45 struct lima_query *query = calloc(1, sizeof(*query));
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
radeon_queryobj.h 45 radeon->query.queryobj.cmd = calloc(SZ, sizeof(uint32_t));
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
symbol_table.c 121 struct scope_level *const scope = calloc(1, sizeof(*scope));
186 new_sym = calloc(1, sizeof(*sym));
255 sym = calloc(1, sizeof(*sym));
292 struct _mesa_symbol_table *table = calloc(1, sizeof(*table));

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>