HomeSort by relevance Sort by last modified time
    Searched defs:num_types (Results 1 - 23 of 23) sorted by null

  /external/brotli/c/enc/
block_splitter.h 23 size_t num_types; /* Amount of distinct types */ member in struct:BlockSplit
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
testlib.c 60 int num_types; local
73 XvMCSurfaceInfo *surface_info = XvMCListSurfaceTypes(display, adaptor_info[i].base_id, &num_types);
77 for (j = 0; j < num_types && !found_port; ++j)
  /art/runtime/mirror/
dex_cache.cc 73 size_t num_types = kDexCacheTypeCacheSize; local
74 if (dex_file->NumTypeIds() < num_types) {
75 num_types = dex_file->NumTypeIds();
124 for (size_t i = 0; i < num_types; ++i) {
164 num_types,
  /external/mesa3d/src/gallium/state_trackers/xvmc/
context.c 55 int num_types; local
84 surface_info = XvMCListSurfaceTypes(dpy, adaptor_info[j].base_id, &num_types);
90 for (int l = 0; l < num_types && !found_surface; ++l) {
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
AData.h 552 static constexpr size_t num_types = sizeof...(Ts); ///< number of types to support member in struct:android::AData
578 static constexpr Flag count = num_types + 1;
641 static constexpr Flag count = num_types + 1;
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
types.c 676 unsigned num_types; local
679 num_types = darray_empty(info->types) ? 1 : darray_size(info->types);
680 types = calloc(num_types, sizeof(*types));
699 for (unsigned i = 0; i < num_types; i++) {
714 keymap->num_types = num_types;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_conv.c 388 const unsigned num_types = ARRAY_SIZE(conv_types); variable
399 for(src_type = conv_types; src_type < &conv_types[num_types]; ++src_type) {
400 for(dst_type = conv_types; dst_type < &conv_types[num_types]; ++dst_type) {
428 src_type = &conv_types[rand() % num_types];
431 dst_type = &conv_types[rand() % num_types];
lp_test_blend.c 633 const unsigned num_types = ARRAY_SIZE(blend_types); variable
655 for(type = blend_types; type < &blend_types[num_types]; ++type) {
715 type = &blend_types[rand() % num_types];
  /external/webrtc/webrtc/base/
macsocketserver.cc 252 UInt32 num_types = 0; local
255 num_types = GetEventTypeCount(kEventWakeUpSpec);
267 OSStatus result = ReceiveNextEvent(num_types, events, timeout, true,
  /system/core/property_service/libpropertyinfoparser/include/property_info_parser/
property_info_parser.h 170 uint32_t num_types() const { return uint32_array(types_offset())[0]; } function in class:android::properties::PropertyInfoArea
  /external/libcups/cups/
ppd-private.h 139 int num_types; /* Number of media types */ member in struct:_ppd_cache_s
ppd-cache.c 407 num_types; /* Number of types in file */ local
494 num_types = 0;
774 if (num_types > 0)
781 if ((num_types = atoi(value)) <= 0 || num_types > 65536)
784 "line %d.", num_types, linenum));
789 if ((pc->types = calloc((size_t)num_types, sizeof(pwg_map_t))) == NULL)
792 num_types));
807 if (pc->num_types >= num_types)
    [all...]
  /external/selinux/checkpolicy/test/
dismod.c 118 unsigned int i, num_types; local
127 num_types = 0;
129 num_types++;
136 num_types++;
137 if (num_types > 1)
141 if (num_types <= 1) {
146 num_types++;
147 if (num_types > 1)
152 if (num_types > 1)
173 if (num_types > 1
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 444 uint32_t num_types; member in struct:art::DexCacheStats
448 num_types(0),
477 total->num_types += dex_file->NumTypeIds();
503 for (size_t j = 0, num_types = dex_cache->NumResolvedTypes(); j < num_types; ++j) {
506 filled->num_types++;
611 total.num_types, before.num_types, after.num_types);
  /frameworks/native/libs/vr/libvrflinger/
hardware_composer.cpp 275 uint32_t num_types; local
278 composer_->validateDisplay(display, &num_types, &num_requests);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
XKBlib.h 72 int num_types; /* number of changed key types */ member in struct:_XkbMapNotifyEvent
159 int num_types; /* number of key types with new names */ member in struct:_XkbNamesNotify
928 int /* num_types */
  /external/libxkbcommon/xkbcommon/src/
keymap.h 379 unsigned int num_types; member in struct:xkb_keymap
  /external/selinux/libsepol/src/
kernel_to_cil.c 2118 unsigned i, num, j, num_types; local
    [all...]
module_to_cil.c 2101 int num_types = 0; local
    [all...]
  /art/oatdump/
oatdump.cc 2508 size_t num_types = dex_cache->NumResolvedTypes(); local
2510 os << "Types (size=" << num_types << "):\\n"; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XKBstr.h 323 unsigned char num_types; member in struct:_XkbClientMapRec
470 unsigned char num_types; member in struct:_XkbMapChanges
501 unsigned char num_types; member in struct:_XkbNameChanges
551 int num_types; member in struct:_XkbComponentList
  /external/selinux/libsepol/cil/src/
cil_internal.h 306 int num_types; member in struct:cil_db
  /art/runtime/
class_linker.cc 1301 const size_t num_types = dex_cache->NumResolvedTypes(); local
5129 uint32_t num_types = types1->Size(); local
    [all...]

Completed in 854 milliseconds