Searched defs:new_type (Results 1 - 9 of 9) sorted by relevance

/external/e2fsprogs/lib/blkid/
H A Ddev.c131 char *new_type, *new_value; local
136 new_type = malloc(strlen(search_type)+1);
138 if (!new_type || !new_value) {
139 free(new_type);
143 strcpy(new_type, search_type);
147 iter->search_type = new_type;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_conv.c621 struct lp_type new_type; local
623 new_type = tmp_type;
624 new_type.sign = dst_type.sign;
625 new_type.width = dst_type.width;
626 new_type.length = dst_type.length;
628 lp_build_resize(gallivm, tmp_type, new_type, tmp, num_srcs, tmp, num_dsts);
630 tmp_type = new_type;
/external/opencv3/modules/core/test/
H A Dtest_umat.cpp171 int new_type = CV_MAKE_TYPE(randomInt(CV_8S,CV_64F),randomInt(1,4)); local
172 ub = UMat(dims, sz, new_type);
/external/v8/test/cctest/compiler/
H A Dtest-js-typed-lowering.cc287 Type* new_type = NodeProperties::GetType(new_input); local
289 CHECK(new_type->Is(expected_type));
/external/selinux/libsepol/src/
H A Dexpand.c79 type_datum_t *type, *new_type; local
105 new_type = (type_datum_t *) malloc(sizeof(type_datum_t));
106 if (!new_type) {
111 memset(new_type, 0, sizeof(type_datum_t));
113 new_type->flavor = type->flavor;
114 new_type->flags = type->flags;
115 new_type->s.value = ++state->out->p_types.nprim;
116 if (new_type->s.value > UINT16_MAX) {
118 free(new_type);
122 new_type
148 type_datum_t *type, *new_type; local
[all...]
H A Dlink.c441 type_datum_t *type, *base_type, *new_type = NULL; local
480 if ((new_type =
481 (type_datum_t *) calloc(1, sizeof(*new_type))) == NULL) {
484 new_type->primary = type->primary;
485 new_type->flags = type->flags;
486 new_type->flavor = type->flavor;
487 /* for attributes, the writing of new_type->types is
490 new_type->s.value = state->base->p_types.nprim + 1;
494 (hashtab_datum_t) new_type);
499 base_type = new_type;
857 type_datum_t *type, *base_type, *new_type = NULL, *target_type; local
1165 type_datum_t *type, *new_type = NULL; local
[all...]
/external/v8/src/compiler/
H A Dsimplified-lowering.cc358 Type* new_type = type; local
373 new_type = static_type;
376 new_type = Type::Intersect(static_type, feedback_type, graph_zone());
393 new_type = static_type;
396 new_type = Type::Intersect(static_type, feedback_type, graph_zone());
413 new_type = static_type;
416 new_type = Type::Intersect(static_type, feedback_type, graph_zone());
433 new_type = static_type;
436 new_type = Type::Intersect(static_type, feedback_type, graph_zone());
453 new_type
[all...]
H A Dregister-allocator.cc2301 UsePositionType new_type = UsePositionType::kAny; local
2304 new_type = UsePositionType::kRequiresRegister;
2306 pos->set_type(new_type, true);
/external/v8/src/
H A Dobjects.cc4307 FieldType* new_type = new_descriptors->GetFieldType(i); local
4309 // knowledge, so we must first generalize the new_type to "Any".
4310 if (FieldTypeIsCleared(new_details.representation(), new_type)) {
4317 !old_type->NowIs(new_type)) {
4323 if (!new_type->NowContains(old_value)) {
4331 FieldType* new_type = new_descriptors->GetFieldType(i); local
4332 DCHECK(new_type->IsAny());
18906 PropertyCellType new_type = UpdatedType(cell, value, original_details); local
18910 details = details.set_cell_type(new_type);
18915 if (!invalidate && (old_type != new_type ||
[all...]

Completed in 358 milliseconds