/third_party/icu/icu4c/source/i18n/ |
H A D | regexcst.pl | 29 $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] [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | regexcst.pl | 29 $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] [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | regexcst.pl | 29 $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] [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | rbbicst.pl | 30 $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] [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | rbbicst.pl | 30 $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] [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | rbbicst.pl | 30 $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] [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | node-marker.cc | 13 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()
|
H A D | node-marker.h | 21 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()
|
/third_party/musl/porting/liteos_m/kernel/src/regex/ |
H A D | regexec.c | 215 /* Ensure that tbytes and xbytes*num_states cannot overflow, and that in tre_tnfa_run_parallel() 217 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() [all...] |
H A D | tre.h | 167 int num_states; member
|
H A D | regcomp.c | 2878 tnfa->num_states = parse_ctx.position; in regcomp()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/ |
H A D | regexec.c | 215 /* Ensure that tbytes and xbytes*num_states cannot overflow, and that in tre_tnfa_run_parallel() 217 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() [all...] |
H A D | tre.h | 168 int num_states; member
|
H A D | regcomp.c | 2879 tnfa->num_states = parse_ctx.position; in regcomp()
|
/third_party/musl/porting/uniproton/kernel/src/regex/ |
H A D | regexec.c | 215 /* Ensure that tbytes and xbytes*num_states cannot overflow, and that in tre_tnfa_run_parallel() 217 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() [all...] |
H A D | tre.h | 167 int num_states; member
|
/third_party/musl/src/regex/ |
H A D | regexec.c | 215 /* Ensure that tbytes and xbytes*num_states cannot overflow, and that in tre_tnfa_run_parallel() 217 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() [all...] |
H A D | tre.h | 166 int num_states; member
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | dump_state.py | 307 def bind_sampler_states(self, shader, start, num_states, states): 312 def bind_vertex_sampler_states(self, num_states, states): 316 def bind_geometry_sampler_states(self, num_states, states): 320 def bind_fragment_sampler_states(self, num_states, states):
|
/third_party/mesa3d/src/virtio/virtio-gpu/ |
H A D | virgl_protocol.h | 404 #define VIRGL_BIND_SAMPLER_STATES(num_states) ((num_states) + 2)
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_resource.h | 206 unsigned num_states; member
|
H A D | iris_state.c | 2400 surf_state->num_states = util_bitcount(aux_usages); in alloc_surface_states() 2401 surf_state->cpu = calloc(surf_state->num_states, surf_size); in alloc_surface_states() 2416 const unsigned bytes = surf_state->num_states * surf_size; in upload_surface_states() 2448 for (unsigned i = 0; i < surf_state->num_states; i++) { in update_surface_state_addrs()
|
/third_party/rust/crates/regex/src/ |
H A D | dfa.rs | 1501 self.cache.compiled.len() == self.cache.trans.num_states() in add_state() 1649 fn num_states(&self) -> usize { in num_states() functions 1763 for si in 0..self.num_states() {
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
H A D | tr_context.c | 482 unsigned num_states, in trace_context_bind_sampler_states() 496 trace_dump_arg(uint, num_states); in trace_context_bind_sampler_states() 497 trace_dump_arg_array(ptr, states, num_states); in trace_context_bind_sampler_states() 499 pipe->bind_sampler_states(pipe, shader, start, num_states, states); in trace_context_bind_sampler_states() 479 trace_context_bind_sampler_states(struct pipe_context *_pipe, enum pipe_shader_type shader, unsigned start, unsigned num_states, void **states) trace_context_bind_sampler_states() argument
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_cmd_buffer.c | 3830 uint32_t num_states = 0; in dzn_CmdPushConstants() local 3833 states[num_states++] = &cmdbuf->state.push_constant.gfx; in dzn_CmdPushConstants() 3836 states[num_states++] = &cmdbuf->state.push_constant.compute; in dzn_CmdPushConstants() 3838 for (uint32_t i = 0; i < num_states; i++) { in dzn_CmdPushConstants()
|