HomeSort by: relevance | last modified time | path
    Searched defs:first (Results 1 - 25 of 784) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAsmMacro.cpp 23 bool first = true; local
25 if (!first)
27 first = false;
  /src/external/gpl2/lvm2/dist/lib/format_text/
tags.c 27 int first = 1; local
33 if (!first) {
37 first = 0;
  /src/games/robots/
init_field.c 56 static bool first = true; local
99 if (first)
109 if (first)
117 if (first)
119 first = false;
  /src/external/bsd/atf/dist/tools/
several_tcs_helper.c 32 ATF_TC(first); variable
33 ATF_TC_HEAD(first, tc)
37 ATF_TC_BODY(first, tc)
62 ATF_TP_ADD_TC(tp, first);
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
hash.h 33 struct hash_entry *first; /* Pointer to head of list of entries. */ member in struct:hash_table
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
hash.h 33 struct hash_entry *first; /* Pointer to head of list of entries. */ member in struct:hash_table
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
hash.h 33 struct hash_entry *first; /* Pointer to head of list of entries. */ member in struct:hash_table
  /src/usr.bin/netstat/
pfkey.c 119 int first, type; local
140 for (first = 1, type = 0; type < 256; type++) {
143 if (first) {
145 first = 0;
172 for (first = 1, type = 0; type < 256; type++) {
175 if (first) {
177 first = 0;
  /src/external/bsd/elftoolchain/dist/libdwarf/
dwarf_attrval.c 150 int first; local
178 first = (die1 == NULL);
180 if (!first)
  /src/external/bsd/openldap/dist/include/ac/
dirent.h 36 int first; member in struct:DIR
  /src/external/bsd/unbound/dist/services/
outbound_list.h 54 struct outbound_entry* first; member in struct:outbound_list
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zle.c 45 uchar_t *first = src; local
51 *len = src - first - 1 + n;
60 *len = src - first - 1;
  /src/external/gpl3/gcc.old/dist/libgomp/
single.c 31 /* This routine is called when first encountering a SINGLE construct that
58 /* This routine is called when first encountering a SINGLE construct that
68 bool first; local
71 first = gomp_work_share_start (0);
73 if (first)
  /src/games/battlestar/
command4.c 216 int first, value; local
218 first = wordnumber;
247 wordnumber = first + 1;
293 return (first);
295 return (first);
297 return (first);
  /src/games/mille/
init.c 115 static int first = TRUE; local
117 if (first) {
144 first = FALSE;
  /src/sys/external/bsd/drm2/linux/
linux_list_sort.c 121 * breaking ties by choosing nodes in `a' first, and returning
134 struct list_head **const first = ((*compare)(arg, a, b) <= 0? local
137 tail = tail->next = *first;
138 *first = (*first)->next;
151 * nodes in `a' first, and setting the `prev' pointers as we go.
164 struct list_head **const first = ((*compare)(arg, a, b) <= 0? local
167 (*first)->prev = prev;
168 prev = prev->next = *first;
169 *first = (*first)->next
    [all...]
  /src/usr.bin/audio/common/
decode.c 81 int first; local
92 decode_int(s, &first);
93 tvp->tv_sec = first * 60; /* minutes */
98 decode_int(s, &first);
99 tvp->tv_sec += first; /* minutes and hours */
117 decode_int(s, &first);
118 tvp->tv_sec += first;
  /src/usr.bin/find/
misc.c 105 int ch, first, nl; local
113 first = ch = getchar();
128 return (first == 'y');
  /src/usr.bin/from/
from.c 134 char ch, pch, first; local
137 for (first = *sender++;;) {
142 if (ch != first)
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
LineTable.h 40 /// ULEB FirstLine The value of the first source line number to
68 /// LTOC_FirstSpecial 0x04 First special opcode (see SPECIAL
169 /// Return the first line entry if the line table isn't empty.
171 /// \returns An optional line entry with the first line entry if the line
173 Optional<LineEntry> first() const { function in class:llvm::gsym::LineTable
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
GenericValue.h 25 unsigned int first; member in struct:llvm::GenericValue::IntPair
43 UIntPairVal.first = 0;
  /src/external/bsd/kyua-cli/dist/engine/
context.cpp 154 bool first = true; local
157 if (!first)
159 first = false;
161 output << F("%s=%s") % (*iter).first
  /src/external/bsd/less/dist/lesstest/
unicode.c 3 typedef struct wchar_range { wchar first, last; } wchar_range; member in struct:wchar_range
19 if (ch < table[0].first)
27 else if (ch < table[mid].first)
47 if (ch1 == comb_table[i].first &&
  /src/external/bsd/libbind/dist/isc/
ev_waits.c 68 wl->first = new;
84 evWait *first; local
91 first = wl->first;
92 INSIST(first != NULL);
95 ctx->waitDone.last->next = first;
97 ctx->waitDone.first = first;
118 for (prev = NULL, this = wl->first;
126 wl->first = this->next
    [all...]
  /src/external/bsd/nvi/dist/ex/
ex_join.c 45 int extra, first; local
70 for (first = 1,
111 if (!first && !FL_ISSET(cmdp->iflags, E_C_FORCE)) {
114 * last char first char behavior
156 * Historic practice for vi was to put the cursor at the first
158 * first character of the joined line, if there wasn't, or the
161 * for the first line joined, ignoring subsequent lines. If
163 * first non-blank character of the line unless the cursor was
168 * on the first inserted whitespace character, the first
    [all...]

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011>>