| /src/lib/libc/arch/m68k/string/ |
| memccpy.S | 44 movl 12(%sp),%d1 | d1 = terminator 51 cmpb %d2,%d1 | found the terminator? 66 movql #0,%d0 | no terminator found, return NULL 87 movql #0,%d0 | no terminator found, return NULL
|
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| str-list.h | 74 by the terminator character. The terminator character is not added if 76 the terminator. */ 78 char terminator, bool drop_redundant_terminator);
|
| str-list.c | 181 by the terminator character. The terminator character is not added if 183 the terminator. */ 186 char terminator, bool drop_redundant_terminator) 200 if (terminator) 212 if (terminator 216 && slp->item[slp->nitems - 1][len - 1] == terminator)) 217 result[pos++] = terminator;
|
| x-tcl.c | 564 enum terminator enum 577 'looking_for' denotes a parse terminator combination. 580 accumulate_word (struct word *wp, enum terminator looking_for, 712 'looking_for' denotes a parse terminator, either ']' or '\0'. */ 763 enum word_type terminator; local 770 terminator = read_command_list ('\0', null_context); 772 if (terminator == t_brace) 813 'looking_for' denotes a parse terminator, either ']' or '\0'. 946 'looking_for' denotes a parse terminator, either ']' or '\0'. 954 enum word_type terminator; local [all...] |
| x-sh.c | 361 /* The expected terminator of the currently open single-quote. 714 'looking_for' denotes a parse terminator, either CLOSING_BACKQUOTE, ')' 1180 'looking_for' denotes a parse terminator, either CLOSING_BACKQUOTE, ')' 1310 'looking_for' denotes a parse terminator, either CLOSING_BACKQUOTE, ')' 1318 enum word_type terminator; local 1320 terminator = read_command (looking_for, outer_context); 1321 if (terminator != t_separator) 1322 return terminator;
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| attr_scan_plain.c | 32 /* attr_scan_more_plain() returns 0 when a terminator is found 33 /* (and consumes that terminator), returns 1 when more input 80 /* input stream ends without the newline attribute list terminator. 90 /* list terminator. 99 /* .IP List of attributes followed by terminator: 132 /* list terminator. In terms of code, this means that the 195 int terminator, const char *context) 206 && (terminator == 0 || ch != terminator)) { 232 int terminator, [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/ |
| gtest-death-test.h | 298 // terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED 306 // never executed. The unreachable code macro protects the terminator 311 # define GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, terminator) \ 320 terminator; \
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/ |
| dw2-inline-break.S | 511 .quad 0x0 # Location list terminator begin (*.LLST0) 512 .quad 0x0 # Location list terminator end (*.LLST0) 522 .quad 0x0 # Location list terminator begin (*.LLST1) 523 .quad 0x0 # Location list terminator end (*.LLST1) 529 .quad 0x0 # Location list terminator begin (*.LLST2) 530 .quad 0x0 # Location list terminator end (*.LLST2) 540 .quad 0x0 # Location list terminator begin (*.LLST3) 541 .quad 0x0 # Location list terminator end (*.LLST3) 552 .quad 0x0 # Location list terminator begin (*.LLST4) 553 .quad 0x0 # Location list terminator end (*.LLST4 [all...] |
| pieces.S | 786 .long 0 # Location list terminator begin (*.LLST0) 787 .long 0 # Location list terminator end (*.LLST0) 814 .long 0 # Location list terminator begin (*.LLST1) 815 .long 0 # Location list terminator end (*.LLST1) 872 .long 0 # Location list terminator begin (*.LLST2) 873 .long 0 # Location list terminator end (*.LLST2) 900 .long 0 # Location list terminator begin (*.LLST3) 901 .long 0 # Location list terminator end (*.LLST3) 958 .long 0 # Location list terminator begin (*.LLST4) 959 .long 0 # Location list terminator end (*.LLST4 [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/ |
| dw2-inline-break.S | 511 .quad 0x0 # Location list terminator begin (*.LLST0) 512 .quad 0x0 # Location list terminator end (*.LLST0) 522 .quad 0x0 # Location list terminator begin (*.LLST1) 523 .quad 0x0 # Location list terminator end (*.LLST1) 529 .quad 0x0 # Location list terminator begin (*.LLST2) 530 .quad 0x0 # Location list terminator end (*.LLST2) 540 .quad 0x0 # Location list terminator begin (*.LLST3) 541 .quad 0x0 # Location list terminator end (*.LLST3) 552 .quad 0x0 # Location list terminator begin (*.LLST4) 553 .quad 0x0 # Location list terminator end (*.LLST4 [all...] |
| pieces.S | 786 .long 0 # Location list terminator begin (*.LLST0) 787 .long 0 # Location list terminator end (*.LLST0) 814 .long 0 # Location list terminator begin (*.LLST1) 815 .long 0 # Location list terminator end (*.LLST1) 872 .long 0 # Location list terminator begin (*.LLST2) 873 .long 0 # Location list terminator end (*.LLST2) 900 .long 0 # Location list terminator begin (*.LLST3) 901 .long 0 # Location list terminator end (*.LLST3) 958 .long 0 # Location list terminator begin (*.LLST4) 959 .long 0 # Location list terminator end (*.LLST4 [all...] |
| /src/external/bsd/zstd/dist/contrib/gen_html/ |
| gen_html.cpp | 40 /* get lines until a given terminator */ 41 vector<string> get_lines(vector<string>& input, int& linenum, string terminator) 50 if (terminator.empty() && line.empty()) { linenum--; break; } 52 epos = line.find(terminator); 53 if (!terminator.empty() && epos!=string::npos) {
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/ |
| amd64-entry-value.s | 2792 .quad 0 # Location list terminator begin (*.LLST0) 2793 .quad 0 # Location list terminator end (*.LLST0) 2827 .quad 0 # Location list terminator begin (*.LLST1) 2828 .quad 0 # Location list terminator end (*.LLST1) 2841 .quad 0 # Location list terminator begin (*.LLST2) 2842 .quad 0 # Location list terminator end (*.LLST2) 2857 .quad 0 # Location list terminator begin (*.LLST3) 2858 .quad 0 # Location list terminator end (*.LLST3) 2877 .quad 0 # Location list terminator begin (*.LLST4) 2878 .quad 0 # Location list terminator end (*.LLST4 [all...] |
| amd64-tailcall-noret.S | 551 .quad 0 # Location list terminator begin (*.LLST0) 552 .quad 0 # Location list terminator end (*.LLST0) 565 .quad 0 # Location list terminator begin (*.LLST1) 566 .quad 0 # Location list terminator end (*.LLST1) 578 .quad 0 # Location list terminator begin (*.LLST2) 579 .quad 0 # Location list terminator end (*.LLST2) 592 .quad 0 # Location list terminator begin (*.LLST3) 593 .quad 0 # Location list terminator end (*.LLST3) 606 .quad 0 # Location list terminator begin (*.LLST4) 607 .quad 0 # Location list terminator end (*.LLST4 [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/ |
| amd64-entry-value.s | 2792 .quad 0 # Location list terminator begin (*.LLST0) 2793 .quad 0 # Location list terminator end (*.LLST0) 2827 .quad 0 # Location list terminator begin (*.LLST1) 2828 .quad 0 # Location list terminator end (*.LLST1) 2841 .quad 0 # Location list terminator begin (*.LLST2) 2842 .quad 0 # Location list terminator end (*.LLST2) 2857 .quad 0 # Location list terminator begin (*.LLST3) 2858 .quad 0 # Location list terminator end (*.LLST3) 2877 .quad 0 # Location list terminator begin (*.LLST4) 2878 .quad 0 # Location list terminator end (*.LLST4 [all...] |
| amd64-tailcall-noret.S | 551 .quad 0 # Location list terminator begin (*.LLST0) 552 .quad 0 # Location list terminator end (*.LLST0) 565 .quad 0 # Location list terminator begin (*.LLST1) 566 .quad 0 # Location list terminator end (*.LLST1) 578 .quad 0 # Location list terminator begin (*.LLST2) 579 .quad 0 # Location list terminator end (*.LLST2) 592 .quad 0 # Location list terminator begin (*.LLST3) 593 .quad 0 # Location list terminator end (*.LLST3) 606 .quad 0 # Location list terminator begin (*.LLST4) 607 .quad 0 # Location list terminator end (*.LLST4 [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| stdio.d | 1819 terminator = Line terminator (by default, `'\n'`). 1825 The line that was read, including the line terminator character. 1843 S readln(S = string)(dchar terminator = '\n') 1847 readln(buf, terminator); 1904 terminator = Line terminator (by default, `'\n'`). Use 1974 size_t readln(C)(ref C[] buf, dchar terminator = '\n') 1989 return readlnImpl(_p.handle, buf, terminator, _p.orientation); 1993 string s = readln(terminator); [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/vms/ |
| vms-ld.c | 401 unsigned int terminator; 407 unsigned int terminator; 433 item_lst1.terminator = 0; 469 item_lst2.terminator = 0; 492 item_lst1.terminator = 0; 522 item_lst1.terminator = 0; 400 unsigned int terminator; member in struct:__anon13538 406 unsigned int terminator; member in struct:__anon13539
|
| /src/external/gpl3/gcc.old/dist/gcc/config/vms/ |
| vms-ld.c | 401 unsigned int terminator; 407 unsigned int terminator; 433 item_lst1.terminator = 0; 469 item_lst2.terminator = 0; 492 item_lst1.terminator = 0; 522 item_lst1.terminator = 0; 400 unsigned int terminator; member in struct:__anon15966 406 unsigned int terminator; member in struct:__anon15967
|
| /src/external/gpl2/rcs/dist/src/ |
| co.c | 630 char terminator; local 646 terminator = *--j; 653 *j = terminator;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/ |
| mi2-amd64-entry-value.s | 778 .quad 0 # Location list terminator begin (*.LLST0) 779 .quad 0 # Location list terminator end (*.LLST0) 793 .quad 0 # Location list terminator begin (*.LLST1) 794 .quad 0 # Location list terminator end (*.LLST1) 811 .quad 0 # Location list terminator begin (*.LLST2) 812 .quad 0 # Location list terminator end (*.LLST2) 818 .quad 0 # Location list terminator begin (*.LLST3) 819 .quad 0 # Location list terminator end (*.LLST3) 833 .quad 0 # Location list terminator begin (*.LLST4) 834 .quad 0 # Location list terminator end (*.LLST4 [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/ |
| mi2-amd64-entry-value.s | 778 .quad 0 # Location list terminator begin (*.LLST0) 779 .quad 0 # Location list terminator end (*.LLST0) 793 .quad 0 # Location list terminator begin (*.LLST1) 794 .quad 0 # Location list terminator end (*.LLST1) 811 .quad 0 # Location list terminator begin (*.LLST2) 812 .quad 0 # Location list terminator end (*.LLST2) 818 .quad 0 # Location list terminator begin (*.LLST3) 819 .quad 0 # Location list terminator end (*.LLST3) 833 .quad 0 # Location list terminator begin (*.LLST4) 834 .quad 0 # Location list terminator end (*.LLST4 [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/net/ |
| curl.d | 1272 // Decode ubyte[] into Char[] until a Terminator is found. 1273 // If not Terminator is found and EOF is false then raise an 1296 * keepTerminator = `Yes.keepTerminator` signals that the line terminator should be 1298 * terminator = The character that terminates a line 1304 auto byLine(Conn = AutoProtocol, Terminator = char, Char = char) 1306 Terminator terminator = '\n', Conn conn = Conn()) 1307 if (isCurlConn!Conn && isSomeChar!Char && isSomeChar!Terminator) 1316 private Terminator terminator; [all...] |
| /src/external/gpl3/binutils/dist/gas/ |
| cond.c | 221 get_mri_string (int terminator, int *len) 246 while (*input_line_pointer != terminator
|
| /src/external/gpl3/binutils.old/dist/gas/ |
| cond.c | 221 get_mri_string (int terminator, int *len) 246 while (*input_line_pointer != terminator
|