HomeSort by: relevance | last modified time | path
    Searched refs:start (Results 1 - 25 of 7053) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/ibm-public/postfix/dist/src/util/
sane_strtol.h 16 extern long sane_strtol(const char *start, char **end, int);
17 extern unsigned long sane_strtoul(const char *start, char **end, int);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
info-threads-cur-sal-2.c 19 start (void *arg) function
  /src/external/gpl3/gdb/dist/readline/readline/examples/
manexamp.c 66 register int start, end; local
68 start = rl_point;
79 end = start + (count * direction);
87 if (start > end)
89 int temp = start;
90 start = end;
94 if (start == end)
99 rl_modifying (start, end);
101 for (; start != end; start += direction
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/m32c/
sample2.c 25 start (void) function
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
info-threads-cur-sal-2.c 19 start (void *arg) function
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
manexamp.c 66 register int start, end; local
68 start = rl_point;
79 end = start + (count * direction);
87 if (start > end)
89 int temp = start;
90 start = end;
94 if (start == end)
99 rl_modifying (start, end);
101 for (; start != end; start += direction
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/testsuite/m32c/
sample2.c 25 start (void) function
  /src/common/dist/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start);
  /src/external/cddl/osnet/dist/uts/common/zmod/
inffast.h 13 void inflate_fast OF((z_streamp strm, unsigned start));
  /src/external/gpl3/binutils/dist/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/
disconnected-tracing.c 31 start (void) function
36 start ();
read-memory.c 27 start (void) function
40 start ();
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/
disconnected-tracing.c 31 start (void) function
36 start ();
  /src/usr.bin/m4/lib/
ohash_create_entry.c 26 ohash_create_entry(struct ohash_info *i, const char *start, const char **end)
31 *end = start + strlen(start);
32 p = (i->alloc)(i->key_offset + (*end - start) + 1, i->data);
34 memcpy(p+i->key_offset, start, *end-start);
35 p[i->key_offset + (*end - start)] = '\0';
  /src/sys/arch/hppa/spmath/
fpbits.h 69 #define Bitfield_extract(start, length, object) \
70 ((object) >> (HOSTWDSZ - (start) - (length)) & \
73 #define Bitfield_signed_extract(start, length, object) \
74 ((int)((object) << start) >> (HOSTWDSZ - (length)))
76 #define Bitfield_mask(start, len, object) \
77 ((object) & (((unsigned)-1 >> (HOSTWDSZ-len)) << (HOSTWDSZ-start-len)))
79 #define Bitfield_deposit(value,start,len,object) object = \
80 ((object) & ~(((unsigned)-1 >> (HOSTWDSZ-(len))) << (HOSTWDSZ-(start)-(len)))) | \
81 (((value) & ((unsigned)-1 >> (HOSTWDSZ-(len)))) << (HOSTWDSZ-(start)-(len)))
  /src/external/gpl3/gdb/dist/sim/ppc/
bits.c 29 int start,
32 word &= LSMASK64 (start, stop);
39 int start,
42 val <<= (64 - 1 - start); /* drop high bits */
43 val >>= (64 - 1 - start) + (stop); /* drop low bits */
50 unsigned start,
53 return (word & MASK32(start, stop));
59 unsigned start,
62 return (word & MASK64(start, stop));
68 unsigned start,
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/ppc/
bits.c 29 int start,
32 word &= LSMASK64 (start, stop);
39 int start,
42 val <<= (64 - 1 - start); /* drop high bits */
43 val >>= (64 - 1 - start) + (stop); /* drop low bits */
50 unsigned start,
53 return (word & MASK32(start, stop));
59 unsigned start,
62 return (word & MASK64(start, stop));
68 unsigned start,
    [all...]
  /src/sys/arch/evbppc/stand/wii/
cache.h 39 uint32_t start = ((uint32_t)addr & ~(CACHE_LINE_SIZE - 1)); local
43 while (start < end) {
44 asm volatile("dcbf 0, %0" : : "r"(start) : "memory");
45 start += CACHE_LINE_SIZE;
53 uint32_t start = ((uint32_t)addr & ~(CACHE_LINE_SIZE - 1)); local
57 while (start < end) {
58 asm volatile("dcbi 0, %0" : : "r"(start) : "memory");
59 start += CACHE_LINE_SIZE;
67 uint32_t start = ((uint32_t)addr & ~(CACHE_LINE_SIZE - 1)); local
71 while (start < end)
    [all...]
  /src/sys/arch/zaurus/stand/zboot/
getsecs.c 46 int start; local
48 start = getsecs();
49 while (getsecs() - start < seconds)
  /src/external/gpl2/texinfo/dist/lib/
substring.c 25 substring (const char *start, const char *end)
27 char *result = xmalloc (end - start + 1);
29 const char *scan = start;
  /src/sys/arch/mvme68k/stand/libbug/
outln.c 13 mvmeprom_outln(char *start, char *end)
16 MVMEPROM_ARG2(end, start);
outstr.c 13 mvmeprom_outstr(char *start, char *end)
16 MVMEPROM_ARG2(end, start);
  /src/external/gpl3/binutils.old/dist/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /src/external/gpl3/gdb/dist/sim/testsuite/d10v/
exit47.s 7 start
  /src/external/gpl3/gdb/dist/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));

Completed in 37 milliseconds

1 2 3 4 5 6 7 8 91011>>