Home
last modified time | relevance | path

Searched refs:num_states (Results 1 – 21 of 21) sorted by relevance

/external/icu/icu4c/source/i18n/
Dregexcst.pl29 $num_states = 1; # Always the state number for the line being compiled.
68 $states{$state_name} = $num_states;
69 $stateNames[$num_states] = $state_name;
90 $state_line_num[$num_states] = $line_num; # remember line number with each state
97 $state_literal_chars[$num_states] = $fields[0];
98 $state_literal_chars[$num_states] =~ s/'//g;
101 $state_char_class[$num_states] = $fields[0];
113 $state_flag[$num_states] = "false";
115 $state_flag[$num_states] = "true";
122 $state_dest_state[$num_states] = $fields[0];
[all …]
/external/cronet/third_party/icu/source/i18n/
Dregexcst.pl29 $num_states = 1; # Always the state number for the line being compiled.
68 $states{$state_name} = $num_states;
69 $stateNames[$num_states] = $state_name;
90 $state_line_num[$num_states] = $line_num; # remember line number with each state
97 $state_literal_chars[$num_states] = $fields[0];
98 $state_literal_chars[$num_states] =~ s/'//g;
101 $state_char_class[$num_states] = $fields[0];
113 $state_flag[$num_states] = "false";
115 $state_flag[$num_states] = "true";
122 $state_dest_state[$num_states] = $fields[0];
[all …]
/external/icu/icu4c/source/common/
Drbbicst.pl30 $num_states = 1; # Always the state number for the line being compiled.
69 $states{$state_name} = $num_states;
70 $stateNames[$num_states] = $state_name;
91 $state_line_num[$num_states] = $line_num; # remember line number with each state
98 $state_literal_chars[$num_states] = $fields[0];
99 $state_literal_chars[$num_states] =~ s/'//g;
102 $state_char_class[$num_states] = $fields[0];
114 $state_flag[$num_states] = "false";
116 $state_flag[$num_states] = "true";
123 $state_dest_state[$num_states] = $fields[0];
[all …]
/external/cronet/third_party/icu/source/common/
Drbbicst.pl30 $num_states = 1; # Always the state number for the line being compiled.
69 $states{$state_name} = $num_states;
70 $stateNames[$num_states] = $state_name;
91 $state_line_num[$num_states] = $line_num; # remember line number with each state
98 $state_literal_chars[$num_states] = $fields[0];
99 $state_literal_chars[$num_states] =~ s/'//g;
102 $state_char_class[$num_states] = $fields[0];
114 $state_flag[$num_states] = "false";
116 $state_flag[$num_states] = "true";
123 $state_dest_state[$num_states] = $fields[0];
[all …]
/external/musl/src/regex/
Dregexec.c217 if (num_tags > SIZE_MAX/(8 * sizeof(regoff_t) * tnfa->num_states)) in tre_tnfa_run_parallel()
221 if (tnfa->num_states+1 > SIZE_MAX/(8 * sizeof(*reach_next))) in tre_tnfa_run_parallel()
225 if (tnfa->num_states > SIZE_MAX/(8 * sizeof(*reach_pos))) in tre_tnfa_run_parallel()
230 rbytes = sizeof(*reach_next) * (tnfa->num_states + 1); in tre_tnfa_run_parallel()
231 pbytes = sizeof(*reach_pos) * tnfa->num_states; in tre_tnfa_run_parallel()
235 + (rbytes + xbytes * tnfa->num_states) * 2 + tbytes + pbytes; in tre_tnfa_run_parallel()
255 for (i = 0; i < tnfa->num_states; i++) in tre_tnfa_run_parallel()
264 for (i = 0; i < tnfa->num_states; i++) in tre_tnfa_run_parallel()
670 if (tnfa->num_states) in tre_tnfa_run_backtrack()
672 states_seen = xmalloc(sizeof(*states_seen) * tnfa->num_states); in tre_tnfa_run_backtrack()
[all …]
Dtre.h166 int num_states; member
Dregcomp.c2878 tnfa->num_states = parse_ctx.position; in regcomp()
/external/tensorflow/tensorflow/python/ops/
Dctc_ops.py517 num_states = 2 * num_label_states
536 indices, values, shape=[num_states, num_states])
537 trans += linalg_ops.eye(num_states) # Self-loops.
550 batched_shape = [batch_size, num_states, num_states]
573 num_states = num_duration_states * num_label_states
579 depth=num_states,
591 [num_states, batch_size])
643 num_states = num_label_states - 1
646 [batch_size * num_states, num_frames])
1272 num_states = _get_dim(states, 2)
[all …]
/external/mesa3d/src/gallium/tools/trace/
Ddump_state.py286 def bind_sampler_states(self, shader, start, num_states, states): argument
291 def bind_vertex_sampler_states(self, num_states, states): argument
295 def bind_geometry_sampler_states(self, num_states, states): argument
299 def bind_fragment_sampler_states(self, num_states, states): argument
/external/mesa3d/src/virtio/virtio-gpu/
Dvirgl_protocol.h384 #define VIRGL_BIND_SAMPLER_STATES(num_states) ((num_states) + 2) argument
/external/minigbm/external/
Dvirgl_protocol.h381 #define VIRGL_BIND_SAMPLER_STATES(num_states) ((num_states) + 2) argument
/external/virglrenderer/src/
Dvirgl_protocol.h416 #define VIRGL_BIND_SAMPLER_STATES(num_states) ((num_states) + 2) argument
Dvrend_renderer.h292 uint32_t num_states,
Dvrend_decode.c1058 uint32_t num_states = length - 2; in vrend_decode_bind_sampler_states() local
1063 vrend_bind_sampler_states(ctx, shader_type, start_slot, num_states, in vrend_decode_bind_sampler_states()
Dvrend_renderer.c6567 uint32_t num_states, in vrend_bind_sampler_states() argument
6578 if (num_states > PIPE_MAX_SAMPLERS || in vrend_bind_sampler_states()
6579 start_slot > (PIPE_MAX_SAMPLERS - num_states)) { in vrend_bind_sampler_states()
6580 vrend_report_context_error(ctx, VIRGL_ERROR_CTX_ILLEGAL_CMD_BUFFER, num_states); in vrend_bind_sampler_states()
6584 ctx->sub->num_sampler_states[shader_type] = num_states; in vrend_bind_sampler_states()
6586 for (i = 0; i < num_states; i++) { in vrend_bind_sampler_states()
/external/mesa3d/src/gallium/drivers/iris/
Diris_resource.h201 unsigned num_states; member
Diris_state.c2211 surf_state->num_states = util_bitcount(aux_usages); in alloc_surface_states()
2212 surf_state->cpu = calloc(surf_state->num_states, surf_size); in alloc_surface_states()
2227 const unsigned bytes = surf_state->num_states * surf_size; in upload_surface_states()
2259 for (unsigned i = 0; i < surf_state->num_states; i++) { in update_surface_state_addrs()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dshape_inference.cc1166 const int num_states = op.output_shapes().size(); in InferShapeForReduceDataset() local
1167 const int num_captured_arguments = op.getNumOperands() - 1 - num_states; in InferShapeForReduceDataset()
1178 input_types.size() - num_states - num_captured_arguments; in InferShapeForReduceDataset()
1183 << num_states << " , #input_elements = " << num_input_elements in InferShapeForReduceDataset()
1185 if (num_states + num_input_elements + num_captured_arguments != in InferShapeForReduceDataset()
1198 for (int i = 0; i < num_states; ++i) { in InferShapeForReduceDataset()
1220 for (auto t : llvm::drop_begin(op.getOperandTypes(), 1 + num_states)) { in InferShapeForReduceDataset()
/external/mesa3d/src/gallium/auxiliary/driver_trace/
Dtr_context.c353 unsigned num_states, in trace_context_bind_sampler_states() argument
367 trace_dump_arg(uint, num_states); in trace_context_bind_sampler_states()
368 trace_dump_arg_array(ptr, states, num_states); in trace_context_bind_sampler_states()
370 pipe->bind_sampler_states(pipe, shader, start, num_states, states); in trace_context_bind_sampler_states()
/external/rust/crates/regex/src/
Ddfa.rs1501 self.cache.compiled.len() == self.cache.trans.num_states() in add_state()
1649 fn num_states(&self) -> usize { in num_states() method
1763 for si in 0..self.num_states() { in fmt()
/external/mesa3d/src/intel/vulkan/
DgenX_cmd_buffer.c1514 unsigned num_states = 1; in genX() local
1529 num_states++; in genX()
1535 num_states * ss_stride, isl_dev->ss.align); in genX()