| /xsrc/external/mit/brotli/dist/c/enc/ |
| block_splitter.h | 13 #include <brotli/types.h> 23 size_t num_types; /* Amount of distinct types */ 24 size_t num_blocks; /* Amount of values in types and length */ 25 uint8_t* types; member in struct:BlockSplit
|
| /xsrc/external/mit/xorg-server.old/dist/hw/dmx/examples/ |
| res.c | 81 XResType *types; local 84 &c, &types); 85 printf(" %3d: base = 0x%lx, mask = 0x%lx, %d resource types:\n", 89 char *name = XGetAtomName(display, types[j].resource_type); 90 printf(" %2d: %s %d\n", j, name, types[j].count); 93 XFree(types);
|
| /xsrc/external/mit/glu/dist/src/libnurbs/nurbtess/ |
| primitiveStream.h | 46 Int *types; /*each primive has a type: FAN or STREAM*/ member in class:primStream 71 return types[i];
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/nir_to_spirv/ |
| spirv_builder.h | 56 struct hash_table *types; member in struct:spirv_builder
|
| /xsrc/external/mit/xorg-server/dist/Xi/ |
| xiselectev.c | 154 int *types = NULL; local 326 free(types);
|
| /xsrc/external/mit/xorg-server.old/dist/Xi/ |
| xiselectev.c | 103 int *types = NULL; local 195 free(types);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a6xx/ |
| fd6_const.c | 285 static const enum pipe_shader_type types[] = { local 295 for (unsigned i = 0; i < ARRAY_SIZE(types); i++) { 304 for (unsigned i = 0; i < ARRAY_SIZE(types); i++) { 308 &ctx->constbuf[types[i]]); 309 fd6_emit_ubos(ctx, variants[i], constobj, &ctx->constbuf[types[i]]);
|
| /xsrc/external/mit/MesaLib/dist/src/glx/apple/ |
| apple_glx_drawable.h | 111 } types; member in struct:apple_glx_drawable
|
| /xsrc/external/mit/MesaLib.old/dist/src/glx/apple/ |
| apple_glx_drawable.h | 111 } types; member in struct:apple_glx_drawable
|
| /xsrc/external/mit/libxkbfile/dist/include/X11/extensions/ |
| XKBrules.h | 65 char * types; member in struct:_XkbRF_Rule
|
| /xsrc/external/mit/xorg-server/dist/include/ |
| xkbrules.h | 58 const char *types; member in struct:_XkbRF_Rule
|
| /xsrc/external/mit/xorg-server.old/dist/include/ |
| xkbrules.h | 58 char * types; member in struct:_XkbRF_Rule
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/ |
| zink_descriptors_lazy.c | 262 VkDescriptorUpdateTemplateType types[ZINK_DESCRIPTOR_TYPES + 1] = {VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET}; local 264 types[0] = VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_PUSH_DESCRIPTORS_KHR; 291 template[i].templateType = types[i];
|
| /xsrc/external/mit/libX11/dist/src/xkb/ |
| XKBMisc.c | 106 to = map->types; 160 nSyms[i] = xkb->map->types[types_inout[i]].num_levels; 210 /* steps 3&4: alphanumeric expansion, assign canonical types */ 286 allOneLevel = (xkb->map->types[types_inout[0]].num_levels == 1); 292 allOneLevel = (xkb->map->types[types_inout[i]].num_levels == 1); 621 int types[XkbNumKbdGroups]; local 625 types[XkbGroup1Index] = XkbKeyKeyTypeIndex(xkb, key, XkbGroup1Index); 626 types[XkbGroup2Index] = XkbKeyKeyTypeIndex(xkb, key, XkbGroup2Index); 627 types[XkbGroup3Index] = XkbKeyKeyTypeIndex(xkb, key, XkbGroup3Index); 628 types[XkbGroup4Index] = XkbKeyKeyTypeIndex(xkb, key, XkbGroup4Index) [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/glsl/ |
| shtest.c | 452 } types[] = { local 470 for (i = 0; types[i].name; i++) { 471 if (strcmp(types[i].name, n) == 0) 472 return types[i].type;
|
| /xsrc/external/mit/xorg-server.old/dist/dix/ |
| resource.c | 147 #include <sys/types.h> 248 struct ResourceType *types; local 252 types = realloc(resourceTypes, (next + 1) * sizeof(*resourceTypes)); 253 if (!types) 257 resourceTypes = types;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/spirv/ |
| invocation.cpp | 152 std::unordered_map<SpvId, binary::argument> types; local 303 types[id] = { binary::argument::scalar, size, size, size, 305 types[id].info.address_qualifier = CL_KERNEL_ARG_ADDRESS_PRIVATE; 312 const auto types_iter = types.find(type_id); 313 if (types_iter == types.end()) 326 types[id] = { binary::argument::scalar, size, size, 340 const auto types_iter = types.find(type_id); 343 // types allowed as kernel arguments. And since the binary has 346 if (types_iter == types.end()) 356 types[id] = { binary::argument::scalar, struct_size, struct_size [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| glsl_to_nir.cpp | 306 /* Only float base types can be matrices. */ 318 /* Only float base types can be matrices. */ 344 /* Only float base types can be matrices. */ 352 /* Only float base types can be matrices. */ 360 /* Only float base types can be matrices. */ 514 /* For UBO and SSBO variables, we need explicit types */ 1861 glsl_base_type types[4]; local 1864 types[i] = ir->operands[i]->type->base_type; 1866 types[i] = GLSL_TYPE_FLOAT; 1880 result = type_is_float(types[0]) ? nir_fneg(&b, srcs[0] [all...] |
| /xsrc/external/mit/xkbcomp/dist/ |
| keytypes.c | 76 KeyTypeInfo *types; member in struct:_KeyTypesInfo 119 info->types = NULL; 204 if (info->types) 206 for (KeyTypeInfo *type = info->types; type; 211 info->types = (KeyTypeInfo *) ClearCommonInfo(&info->types->defs); 227 info->types = (KeyTypeInfo *) 228 AddCommonInfo((info->types ? &info->types->defs : NULL), 238 for (KeyTypeInfo *old = info->types; old [all...] |
| /xsrc/external/mit/xorg-server/dist/dix/ |
| resource.c | 509 struct ResourceType *types; local 513 types = reallocarray(resourceTypes, next + 1, sizeof(*resourceTypes)); 514 if (!types) 518 resourceTypes = types;
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/ |
| xf86Mode.c | 472 const int types[] = { local 481 const int ntypes = ARRAY_SIZE(types); 503 int type = types[n]; 1848 const int types[] = { local 1855 const int ntypes = ARRAY_SIZE(types); 1861 * modes in the order of "types" listed above. 1864 int type = types[n]; 1948 * There are different types of mode lists:
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/ |
| xf86Mode.c | 468 const int types[] = { local 477 const int ntypes = sizeof(types) / sizeof(int); 499 int type = types[n]; 1857 const int types[] = { local 1864 const int ntypes = sizeof(types) / sizeof(int); 1870 * modes in the order of "types" listed above. 1873 int type = types[n]; 1955 * There are different types of mode lists:
|
| /xsrc/external/mit/xorg-server.old/dist/xkb/ |
| xkbUtils.c | 224 int types[XkbNumKbdGroups]; local 239 types[XkbGroup1Index]= XkbKeyKeyTypeIndex(xkb,key,XkbGroup1Index); 240 types[XkbGroup2Index]= XkbKeyKeyTypeIndex(xkb,key,XkbGroup2Index); 241 types[XkbGroup3Index]= XkbKeyKeyTypeIndex(xkb,key,XkbGroup3Index); 242 types[XkbGroup4Index]= XkbKeyKeyTypeIndex(xkb,key,XkbGroup4Index); 243 nG= XkbKeyTypesForCoreSymbols(xkb,pCore->mapWidth,syms,explicit,types, 245 XkbChangeTypesOfKey(xkb,key,nG,XkbAllGroupsMask,types,mc); 958 if (src->map->types && src->map->num_types) { 960 !dst->map->types || !dst->map->size_types) { 961 if (dst->map->types && dst->map->size_types) [all...] |
| /xsrc/external/mit/xorg-server/dist/xkb/ |
| xkbUtils.c | 224 int types[XkbNumKbdGroups]; local 239 types[XkbGroup1Index] = XkbKeyKeyTypeIndex(xkb, key, XkbGroup1Index); 240 types[XkbGroup2Index] = XkbKeyKeyTypeIndex(xkb, key, XkbGroup2Index); 241 types[XkbGroup3Index] = XkbKeyKeyTypeIndex(xkb, key, XkbGroup3Index); 242 types[XkbGroup4Index] = XkbKeyKeyTypeIndex(xkb, key, XkbGroup4Index); 244 types, tsyms); 245 XkbChangeTypesOfKey(xkb, key, nG, XkbAllGroupsMask, types, mc); 988 if (src->map->types && src->map->num_types) { 990 !dst->map->types || !dst->map->size_types) { 991 if (dst->map->types && dst->map->size_types) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| glsl_to_nir.cpp | 308 /* Only float base types can be matrices. */ 317 /* Only float base types can be matrices. */ 325 /* Only float base types can be matrices. */ 334 /* Only float base types can be matrices. */ 395 /* Only float base types can be matrices. */ 403 /* Only float base types can be matrices. */ 411 /* Only float base types can be matrices. */ 579 /* For UBO and SSBO variables, we need explicit types */ 1891 glsl_base_type types[4]; local 1893 types[i] = ir->operands[i]->type->base_type [all...] |