| /src/external/mit/isl/dist/ |
| isl_schedule_band.h | 25 * anchored is set if the node depends on its position in the schedule tree. 38 int anchored; member in struct:isl_schedule_band
|
| isl_schedule_tree.h | 51 * anchored is set if the node or any of its descendants depends 57 int anchored; member in struct:isl_schedule_tree
|
| isl_schedule.c | 490 int anchored; local 501 anchored = isl_schedule_node_is_subtree_anchored(node); 502 if (anchored < 0) 504 if (anchored) 506 "cannot insert band node in anchored subtree",
|
| isl_schedule_tree.c | 44 * By default, the single node tree does not have any anchored nodes. 45 * The caller is responsible for updating the anchored field if needed. 63 tree->anchored = 0; 142 dup->anchored = tree->anchored; 248 tree->anchored = isl_schedule_band_is_anchored(band); 258 * the tree is anchored. 275 tree->anchored = 1; 338 * the tree is anchored. 355 tree->anchored = 1 492 int anchored; local [all...] |
| isl_schedule_node.c | 1570 /* Is any node in the subtree rooted at "node" anchored? 1846 int anchored; local 1852 anchored = isl_schedule_node_is_subtree_anchored(node); 1853 if (anchored < 0) 1855 if (anchored) 1857 "cannot scale band node with anchored subtree", 1876 int anchored; local 1882 anchored = isl_schedule_node_is_subtree_anchored(node); 1883 if (anchored < 0) 1885 if (anchored) 1906 isl_bool anchored; local 1961 int anchored; local 2011 int anchored; local 2057 isl_bool anchored; local 2551 int anchored; local 2834 int anchored; local 4461 isl_bool anchored; local [all...] |
| /src/external/gpl3/gdb/dist/readline/readline/ |
| histsearch.c | 58 through subsequent. If ANCHORED is non-zero, the string must 72 int string_len, anchored, patsearch; local 77 anchored = (flags & ANCHORED_SEARCH); 116 /* Handle anchored searches first. */ 117 if (anchored == ANCHORED_SEARCH) 207 anchored search request is captured in FLAGS */ 220 /* If the search string is not anchored, we'll be calling fnmatch (assuming 255 /* Do a non-anchored search for STRING through the history in DIRECTION. */ 262 /* Do an anchored search for string through the history in DIRECTION. */
|
| /src/external/gpl3/gdb.old/dist/readline/readline/ |
| histsearch.c | 58 through subsequent. If ANCHORED is non-zero, the string must 72 int string_len, anchored, patsearch; local 77 anchored = (flags & ANCHORED_SEARCH); 116 /* Handle anchored searches first. */ 117 if (anchored == ANCHORED_SEARCH) 207 anchored search request is captured in FLAGS */ 220 /* If the search string is not anchored, we'll be calling fnmatch (assuming 255 /* Do a non-anchored search for STRING through the history in DIRECTION. */ 262 /* Do an anchored search for string through the history in DIRECTION. */
|
| /src/bin/ksh/ |
| history.c | 416 int anchored = *str == '?' ? (++str, 0) : 1; local 419 n = findhist(histptr - histlist - 1, 0, str, anchored); 508 findhist(start, fwd, str, anchored) 512 int anchored; 524 if ((anchored && strncmp(*hp, str, len) == 0) 525 || (!anchored && strstr(*hp, str)))
|
| vi.c | 1711 int anchored; local 1719 anchored = *pat == '^' ? (++pat, 1) : 0; 1720 if ((hist = findhist(start, fwd, pat, anchored)) < 0) {
|