Home
last modified time | relevance | path

Searched refs:num_states (Results 1 – 18 of 18) 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/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] = $javaOutput? "false" : "FALSE";
116 $state_flag[$num_states] = $javaOutput? "true": "TRUE";
123 $state_dest_state[$num_states] = $fields[0];
[all …]
/external/tensorflow/tensorflow/python/keras/layers/
Dlstm_test.py156 num_states = 2
164 initial_state = [keras.Input((units,)) for _ in range(num_states)]
179 for _ in range(num_states)]
184 num_states = 2
194 for _ in range(num_states)]
208 num_states = 2
217 assert len(layer.states) == num_states
238 num_states = 2
246 initial_state = [keras.Input((units,)) for _ in range(num_states)]
257 for _ in range(num_states)]
[all …]
Dlstm_v2_test.py128 num_states = 2
136 initial_state = [keras.Input((units,)) for _ in range(num_states)]
151 np.random.random((num_samples, units)) for _ in range(num_states)
157 num_states = 2
167 for _ in range(num_states)
182 num_states = 2
192 assert len(layer.states) == num_states
219 num_states = 2
227 initial_state = [keras.Input((units,)) for _ in range(num_states)]
238 np.random.random((num_samples, units)) for _ in range(num_states)
[all …]
Dcudnn_recurrent_test.py81 num_states = 2 if layer_class is keras.layers.CuDNNLSTM else 1
87 self.assertEqual(len(state), num_states)
132 num_states = 2 if layer_class is keras.layers.CuDNNLSTM else 1
135 initial_state = [keras.Input((units,)) for _ in range(num_states)]
150 np.random.random((num_samples, units)) for _ in range(num_states)
Dwrappers.py453 num_states = len(initial_state)
454 if num_states % 2 > 0:
465 self.forward_layer.state_spec = state_specs[:num_states // 2]
466 self.backward_layer.state_spec = state_specs[num_states // 2:]
/external/v8/src/compiler/
Dnode-marker.cc13 NodeMarkerBase::NodeMarkerBase(Graph* graph, uint32_t num_states) in NodeMarkerBase() argument
14 : mark_min_(graph->mark_max_), mark_max_(graph->mark_max_ += num_states) { in NodeMarkerBase()
15 DCHECK_NE(0u, num_states); // user error! in NodeMarkerBase()
Dnode-marker.h21 NodeMarkerBase(Graph* graph, uint32_t num_states);
63 V8_INLINE NodeMarker(Graph* graph, uint32_t num_states) in NodeMarker() argument
64 : NodeMarkerBase(graph, num_states) {} in NodeMarker()
/external/tensorflow/tensorflow/python/ops/
Dctc_ops.py376 num_states = 2 * num_label_states
395 indices, values, shape=[num_states, num_states])
396 trans += linalg_ops.eye(num_states) # Self-loops.
409 batched_shape = [batch_size, num_states, num_states]
432 num_states = num_duration_states * num_label_states
439 depth=num_states,
450 final_state_log_probs, [num_states, batch_size])
501 num_states = num_label_states - 1
504 batch_state_major, [batch_size * num_states, num_frames])
934 num_states = _get_dim(states, 2)
[all …]
/external/u-boot/arch/x86/include/asm/
Dspeedstep.h74 int num_states; member
/external/mesa3d/src/gallium/drivers/virgl/
Dvirgl_protocol.h349 #define VIRGL_BIND_SAMPLER_STATES(num_states) ((num_states) + 2) argument
/external/mesa3d/src/gallium/tools/trace/
Ddump_state.py285 def bind_sampler_states(self, shader, start, num_states, states): argument
290 def bind_vertex_sampler_states(self, num_states, states): argument
294 def bind_geometry_sampler_states(self, num_states, states): argument
298 def bind_fragment_sampler_states(self, num_states, states): argument
/external/virglrenderer/src/
Dvirgl_protocol.h371 #define VIRGL_BIND_SAMPLER_STATES(num_states) ((num_states) + 2) argument
Dvrend_renderer.h229 uint32_t num_states,
Dvrend_decode.c989 uint32_t num_states = length - 2; in vrend_decode_bind_sampler_states() local
994 vrend_bind_sampler_states(ctx->grctx, shader_type, start_slot, num_states, in vrend_decode_bind_sampler_states()
Dvrend_renderer.c4767 uint32_t num_states, in vrend_bind_sampler_states() argument
4778 if (num_states > PIPE_MAX_SAMPLERS || in vrend_bind_sampler_states()
4779 start_slot > (PIPE_MAX_SAMPLERS - num_states)) { in vrend_bind_sampler_states()
4780 report_context_error(ctx, VIRGL_ERROR_CTX_ILLEGAL_CMD_BUFFER, num_states); in vrend_bind_sampler_states()
4784 ctx->sub->num_sampler_states[shader_type] = num_states; in vrend_bind_sampler_states()
4786 for (i = 0; i < num_states; i++) { in vrend_bind_sampler_states()
/external/mesa3d/src/gallium/drivers/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/mesa3d/src/intel/vulkan/
DgenX_cmd_buffer.c803 unsigned num_states = 1; in genX() local
806 num_states++; in genX()
809 num_states++; in genX()
815 num_states * ss_stride, isl_dev->ss.align); in genX()