OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:stack_pos
(Results
1 - 4
of
4
) sorted by null
/external/marisa-trie/lib/marisa/
trie-inline.h
261
std::size_t
stack_pos
= 1;
local
262
while (
stack_pos
!= 0) {
263
Cell &cur = stack[
stack_pos
- 1];
266
--
stack_pos
;
287
if (
stack_pos
== stack.size()) {
293
stack[
stack_pos
].set_length(key.length());
294
stack[
stack_pos
- 1].set_node(stack[
stack_pos
- 1].node() + 1);
295
++
stack_pos
;
trie-search.cc
624
std::size_t
stack_pos
= 1;
local
625
while (
stack_pos
!= 0) {
626
Cell &cur = stack[
stack_pos
- 1];
629
--
stack_pos
;
642
if (
stack_pos
== stack.size()) {
648
stack[
stack_pos
- 1].set_node(stack[
stack_pos
- 1].node() + 1);
649
++
stack_pos
;
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie-inline.h
266
std::size_t
stack_pos
= 1;
local
267
while (
stack_pos
!= 0) {
268
Cell &cur = stack[
stack_pos
- 1];
271
--
stack_pos
;
292
if (
stack_pos
== stack.size()) {
298
stack[
stack_pos
].set_length(key.length());
299
stack[
stack_pos
- 1].set_node(stack[
stack_pos
- 1].node() + 1);
300
++
stack_pos
;
trie-search.cc
651
std::size_t
stack_pos
= 1;
local
652
while (
stack_pos
!= 0) {
653
Cell &cur = stack[
stack_pos
- 1];
656
--
stack_pos
;
669
if (
stack_pos
== stack.size()) {
675
stack[
stack_pos
- 1].set_node(stack[
stack_pos
- 1].node() + 1);
676
++
stack_pos
;
Completed in 4739 milliseconds