HomeSort by relevance Sort by last modified time
    Searched refs:base_type (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /external/pdfium/third_party/agg23/
agg_conv_stroke.h 31 typedef conv_adaptor_vcgen<VertexSource, vcgen_stroke, Markers> base_type; typedef in struct:agg::conv_stroke
38 base_type::generator().line_cap(lc);
42 base_type::generator().line_join(lj);
46 base_type::generator().inner_join(ij);
50 return base_type::generator().line_cap();
54 return base_type::generator().line_join();
58 return base_type::generator().inner_join();
62 base_type::generator().width(w);
66 base_type::generator().miter_limit(ml);
70 base_type::generator().miter_limit_theta(t)
    [all...]
agg_vertex_sequence.h 31 typedef pod_deque<T, S> base_type; typedef in class:agg::vertex_sequence
39 if(base_type::size() > 1) {
40 if(!(*this)[base_type::size() - 2]((*this)[base_type::size() - 1])) {
41 base_type::remove_last();
44 base_type::add(val);
49 base_type::remove_last();
55 while(base_type::size() > 1) {
56 if((*this)[base_type::size() - 2]((*this)[base_type::size() - 1]))
    [all...]
agg_conv_dash.h 30 typedef conv_adaptor_vcgen<VertexSource, vcgen_dash, Markers> base_type; typedef in struct:agg::conv_dash
37 base_type::generator().remove_all_dashes();
41 base_type::generator().add_dash(dash_len, gap_len);
45 base_type::generator().dash_start(ds);
49 base_type::generator().shorten(s);
53 return base_type::generator().shorten();
  /external/webrtc/webrtc/base/
sigslotrepeater.h 30 typedef signal0<mt_policy> base_type; typedef in class:sigslot::repeater0
34 repeater0(const this_type& s) : base_type(s) { }
37 void repeat(base_type &s) { s.connect(this, &this_type::reemit); }
38 void stop(base_type &s) { s.disconnect(this); }
46 typedef signal1<arg1_type, mt_policy> base_type; typedef in class:sigslot::repeater1
50 repeater1(const this_type& s) : base_type(s) { }
53 void repeat(base_type& s) { s.connect(this, &this_type::reemit); }
54 void stop(base_type &s) { s.disconnect(this); }
62 typedef signal2<arg1_type, arg2_type, mt_policy> base_type; typedef in class:sigslot::repeater2
66 repeater2(const this_type& s) : base_type(s) {
79 typedef signal3<arg1_type, arg2_type, arg3_type, mt_policy> base_type; typedef in class:sigslot::repeater3
    [all...]
  /external/elfutils/tests/
run-peel-type.sh 25 c raw type base_type
26 i raw type base_type
27 l raw type base_type
37 c raw type base_type
38 i raw type base_type
39 l raw type base_type
49 c raw type base_type
50 i raw type base_type
51 l raw type base_type
59 f raw type base_type
    [all...]
run-readelf-const-values.sh 99 [ 5e] base_type abbrev: 4
177 [ 119] base_type abbrev: 5
183 [ 125] base_type abbrev: 7
189 [ 131] base_type abbrev: 7
195 [ 13d] base_type abbrev: 7
201 [ 149] base_type abbrev: 7
207 [ 155] base_type abbrev: 7
213 [ 161] base_type abbrev: 7
217 [ 168] base_type abbrev: 7
  /external/mesa3d/src/compiler/glsl/tests/
uniform_initializer_utils.h 37 generate_data(void *mem_ctx, enum glsl_base_type base_type,
42 generate_array_data(void *mem_ctx, enum glsl_base_type base_type,
uniform_initializer_utils.cpp 83 switch (type->base_type) {
126 switch (type->base_type) {
166 generate_data(void *mem_ctx, enum glsl_base_type base_type,
173 glsl_type::get_instance(base_type, rows, columns);
180 generate_array_data(void *mem_ctx, enum glsl_base_type base_type,
187 glsl_type::get_instance(base_type, rows, columns);
257 switch (val->type->base_type) {
  /external/mesa3d/src/compiler/
glsl_types.h 151 glsl_base_type base_type:8; member in struct:glsl_type
260 static const glsl_type *get_instance(unsigned base_type, unsigned rows,
442 && (base_type >= GLSL_TYPE_UINT)
443 && (base_type <= GLSL_TYPE_IMAGE);
453 && (base_type >= GLSL_TYPE_UINT)
454 && (base_type <= GLSL_TYPE_BOOL);
463 return (matrix_columns > 1) && (base_type == GLSL_TYPE_FLOAT ||
464 base_type == GLSL_TYPE_DOUBLE ||
465 base_type == GLSL_TYPE_FLOAT16);
473 return (base_type >= GLSL_TYPE_UINT) && (base_type <= GLSL_TYPE_INT64)
678 const glsl_type *base_type = fields.array; local
    [all...]
nir_types.cpp 87 return type->base_type;
349 glsl_scalar_type(enum glsl_base_type base_type)
351 return glsl_type::get_instance(base_type, 1, 1);
355 glsl_vector_type(enum glsl_base_type base_type, unsigned components)
358 return glsl_type::get_instance(base_type, components, 1);
362 glsl_matrix_type(enum glsl_base_type base_type, unsigned rows, unsigned columns)
365 return glsl_type::get_instance(base_type, rows, columns);
394 enum glsl_base_type base_type)
396 return glsl_type::get_sampler_instance(dim, is_shadow, is_array, base_type);
407 enum glsl_base_type base_type)
    [all...]
glsl_types.cpp 39 glsl_base_type base_type, unsigned vector_elements,
42 base_type(base_type), sampled_type(GLSL_TYPE_VOID),
55 ASSERT_BITFIELD_SIZE(glsl_type, base_type, GLSL_TYPE_ERROR);
72 glsl_type::glsl_type(GLenum gl_type, glsl_base_type base_type,
76 base_type(base_type), sampled_type(type),
95 base_type(GLSL_TYPE_STRUCT), sampled_type(GLSL_TYPE_VOID),
122 base_type(GLSL_TYPE_INTERFACE), sampled_type(GLSL_TYPE_VOID),
148 base_type(GLSL_TYPE_FUNCTION), sampled_type(GLSL_TYPE_VOID)
1415 const glsl_type *base_type = st->fields.array; local
2256 glsl_base_type base_type = (glsl_base_type) (u >> 24); local
    [all...]
nir_types.h 150 const struct glsl_type *glsl_scalar_type(enum glsl_base_type base_type);
151 const struct glsl_type *glsl_vector_type(enum glsl_base_type base_type,
153 const struct glsl_type *glsl_matrix_type(enum glsl_base_type base_type,
166 enum glsl_base_type base_type);
170 enum glsl_base_type base_type);
  /external/deqp-deps/SPIRV-Tools/source/val/
validate_bitwise.cpp 42 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
45 if (!base_type ||
46 (!_.IsIntScalarType(base_type) && !_.IsIntVectorType(base_type)))
51 if (_.GetDimension(base_type) != result_dimension)
56 if (_.GetBitWidth(base_type) != _.GetBitWidth(result_type))
117 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
122 if (base_type != result_type)
151 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
155 if (base_type != result_type
178 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
193 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
validate_bitwise.cpp 42 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
45 if (!base_type ||
46 (!_.IsIntScalarType(base_type) && !_.IsIntVectorType(base_type)))
51 if (_.GetDimension(base_type) != result_dimension)
56 if (_.GetBitWidth(base_type) != _.GetBitWidth(result_type))
117 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
122 if (base_type != result_type)
151 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
155 if (base_type != result_type
178 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
193 const uint32_t base_type = _.GetOperandTypeId(inst, 2); local
    [all...]
  /external/mesa3d/src/compiler/glsl/
ir_validate.cpp 263 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT ||
266 ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
289 assert(ir->type->base_type == GLSL_TYPE_INT);
293 assert(ir->type->base_type == GLSL_TYPE_UINT);
296 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
308 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
313 assert(ir->type->base_type == GLSL_TYPE_INT);
316 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
320 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
321 assert(ir->type->base_type == GLSL_TYPE_UINT)
    [all...]
  /external/mesa3d/prebuilt-intermediates/glsl/
ir_expression_operation_constant.h 4 switch (op[0]->type->base_type) {
25 switch (op[0]->type->base_type) {
37 switch (op[0]->type->base_type) {
64 switch (op[0]->type->base_type) {
85 switch (op[0]->type->base_type) {
106 switch (op[0]->type->base_type) {
121 switch (op[0]->type->base_type) {
136 switch (op[0]->type->base_type) {
151 switch (op[0]->type->base_type) {
163 switch (op[0]->type->base_type) {
    [all...]
  /external/flatbuffers/include/flatbuffers/
reflection.h 47 inline size_t GetTypeSize(reflection::BaseType base_type) {
50 return sizes[base_type];
55 inline size_t GetTypeSizeInline(reflection::BaseType base_type, int type_index,
57 if (base_type == reflection::Obj &&
61 return GetTypeSize(base_type);
75 FLATBUFFERS_ASSERT(sizeof(T) == GetTypeSize(field.type()->base_type()));
81 FLATBUFFERS_ASSERT(sizeof(T) == GetTypeSize(field.type()->base_type()));
88 FLATBUFFERS_ASSERT(sizeof(T) == GetTypeSize(field.type()->base_type()));
96 FLATBUFFERS_ASSERT(sizeof(T) == GetTypeSize(field.type()->base_type()));
104 FLATBUFFERS_ASSERT(field.type()->base_type() == reflection::String)
    [all...]
  /external/flatbuffers/src/
idl_gen_general.cpp 252 !IsScalar(DestinationType(t, true).base_type)
258 return type.enum_def != nullptr && IsInteger(type.base_type);
283 if (type.base_type == BASE_TYPE_STRUCT) {
290 return java_typename[type.base_type];
293 return csharp_typename[type.base_type];
302 switch (type.base_type) {
315 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type);
322 switch (type.base_type) {
368 switch (type.base_type) {
381 if (type.base_type == BASE_TYPE_VECTOR)
    [all...]
idl_gen_lobster.cpp 59 auto bits = NumToString(SizeOf(type.base_type) * 8);
60 if (IsInteger(type.base_type)) return "int" + bits;
61 if (IsFloat(type.base_type)) return "float" + bits;
62 if (type.base_type == BASE_TYPE_STRING) return "string";
63 if (type.base_type == BASE_TYPE_STRUCT) return "table";
68 if (IsFloat(type.base_type)) return "float";
74 return IsScalar(type.base_type)
90 return ctypename[type.base_type];
100 if (IsScalar(field.value.type.base_type)) {
112 switch (field.value.type.base_type) {
    [all...]
idl_gen_js_ts.cpp 387 switch (type.base_type) {
408 switch (type.base_type) {
416 if (type.base_type == BASE_TYPE_BOOL) { getter = "!!" + getter; }
451 switch (value.type.base_type) {
471 if (type.base_type == BASE_TYPE_STRING ||
472 type.base_type == BASE_TYPE_STRUCT) {
474 if (type.base_type == BASE_TYPE_STRING) {
483 switch (type.base_type) {
488 if (IsScalar(type.base_type)) {
499 switch (type.base_type) {
    [all...]
idl_gen_cpp.cpp 508 if (type.base_type == BASE_TYPE_BOOL) return "bool";
510 return ctypename[type.base_type];
516 switch (type.base_type) {
537 if (IsScalar(type.base_type)) {
549 if (IsScalar(type.base_type)) {
603 switch (type.base_type) {
646 if (IsScalar(type.base_type)) {
682 if (ev.union_type.base_type == BASE_TYPE_STRUCT) {
687 } else if (ev.union_type.base_type == BASE_TYPE_STRING) {
800 auto is_vector = type.base_type == BASE_TYPE_VECTOR
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/subjects/
rx-behavior.hpp 20 typedef detail::multicast_observer<T> base_type; typedef in class:rxcpp::subjects::detail::behavior_observer
47 : base_type(l)
63 base_type::on_next(std::move(v));
  /external/deqp-deps/SPIRV-Tools/source/opt/
instruction.cpp 223 Instruction* base_type = local
225 if (base_type->opcode() != SpvOpTypeImage) {
229 if (base_type->GetSingleWordInOperand(kTypeImageDimIndex) == SpvDimBuffer) {
235 auto s = base_type->GetSingleWordInOperand(kTypeImageSampledIndex);
249 Instruction* base_type = local
251 if (base_type->opcode() != SpvOpTypeImage) {
255 if (base_type->GetSingleWordInOperand(kTypeImageDimIndex) == SpvDimBuffer) {
261 auto s = base_type->GetSingleWordInOperand(kTypeImageSampledIndex);
275 Instruction* base_type = local
277 if (base_type->opcode() != SpvOpTypeImage)
297 Instruction* base_type = local
331 Instruction* base_type = local
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
instruction.cpp 223 Instruction* base_type = local
225 if (base_type->opcode() != SpvOpTypeImage) {
229 if (base_type->GetSingleWordInOperand(kTypeImageDimIndex) == SpvDimBuffer) {
235 auto s = base_type->GetSingleWordInOperand(kTypeImageSampledIndex);
249 Instruction* base_type = local
251 if (base_type->opcode() != SpvOpTypeImage) {
255 if (base_type->GetSingleWordInOperand(kTypeImageDimIndex) == SpvDimBuffer) {
261 auto s = base_type->GetSingleWordInOperand(kTypeImageSampledIndex);
275 Instruction* base_type = local
277 if (base_type->opcode() != SpvOpTypeImage)
297 Instruction* base_type = local
331 Instruction* base_type = local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_types.cpp 40 switch (type->base_type) {

Completed in 2578 milliseconds

1 2 3 4 5 6