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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.btrace/
data.c 25 volatile static int loc; local
27 loc += 1; /* test.2 */
28 glob += loc; /* test.3 */
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.btrace/
data.c 25 volatile static int loc; local
27 loc += 1; /* test.2 */
28 glob += loc; /* test.3 */
  /src/lib/libc/rpc/
xdr_reference.c 80 caddr_t loc = *pp; local
83 if (loc == NULL)
89 *pp = loc = mem_alloc(size);
90 if (loc == NULL) {
94 memset(loc, 0, size);
101 stat = (*proc)(xdrs, loc);
104 mem_free(loc, size);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
dprintf.c 35 int loc = 1234; local
40 printf ("kickoff %d\n", loc);
41 fprintf (stderr, "also to stderr %d\n", loc);
43 foo (loc++);
44 foo (loc++);
45 foo (loc++);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
mi-dprintf.c 37 int loc = 1234; local
42 printf ("kickoff %d\n", loc);
43 fprintf (stderr, "also to stderr %d\n", loc);
45 foo (loc++);
46 foo (loc++);
47 foo (loc++);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
dprintf.c 35 int loc = 1234; local
40 printf ("kickoff %d\n", loc);
41 fprintf (stderr, "also to stderr %d\n", loc);
43 foo (loc++);
44 foo (loc++);
45 foo (loc++);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
mi-dprintf.c 37 int loc = 1234; local
42 printf ("kickoff %d\n", loc);
43 fprintf (stderr, "also to stderr %d\n", loc);
45 foo (loc++);
46 foo (loc++);
47 foo (loc++);
  /src/sys/arch/arm/broadcom/
bcm53xx_i2c.c 62 const struct bcm_locators * const loc = &ccbaa->ccbaa_loc; local
64 if (strcmp(cf->cf_name, loc->loc_name))
77 const struct bcm_locators * const loc = &ccbaa->ccbaa_loc; local
84 loc->loc_offset, loc->loc_size, &sc->sc_bsh);
bcm53xx_nand.c 67 const struct bcm_locators * const loc = &ccbaa->ccbaa_loc; local
69 if (strcmp(cf->cf_name, loc->loc_name))
82 const struct bcm_locators * const loc = &ccbaa->ccbaa_loc; local
89 loc->loc_offset, loc->loc_size, &sc->sc_bsh);
bcm53xx_sdhc.c 66 const struct bcm_locators * const loc = &ccbaa->ccbaa_loc; local
68 if (strcmp(cf->cf_name, loc->loc_name))
82 const struct bcm_locators * const loc = &ccbaa->ccbaa_loc; local
86 loc->loc_offset, loc->loc_size, &ccbsc->ccbsc_bsh);
101 loc->loc_size);
109 ccbsc->ccbsc_ih = intr_establish(loc->loc_intrs[0], IPL_VM, IST_LEVEL,
113 loc->loc_intrs[0]);
117 loc->loc_intrs[0]);
  /src/external/bsd/am-utils/dist/conf/mtab/
mtab_ultrix.c 91 int loc = 0; local
96 while ((ret = getmountent(&loc, mountbuffer, NMOUNT)) > 0) {
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-convert.cc 77 location_t loc = EXPR_LOCATION (expr);
101 return fold_convert_loc (loc, type, expr);
113 return fold_convert_loc (loc, type, e);
124 tree check = ubsan_instrument_float_cast (loc, type, expr);
135 (loc, type, c_objc_common_truthvalue_conversion (input_location, expr));
75 location_t loc = EXPR_LOCATION (expr); local
  /src/sys/external/isc/atheros_hal/dist/
ah_eeprom_v1.c 117 int i, loc; local
201 for (i = 0, loc = AR_EEPROM_ATHEROS_TP_SETTINGS; i < AR_CHANNELS_MAX; i++, loc += AR_TP_SETTINGS_SIZE) {
205 chan->pcdac[0] = (athvals[loc] >> 10) & 0x3F;
206 chan->gainF[0] = (athvals[loc] >> 4) & 0x3F;
207 chan->pcdac[1] = ((athvals[loc] << 2) & 0x3C)
208 | ((athvals[loc+1] >> 14) & 0x03);
209 chan->gainF[1] = (athvals[loc+1] >> 8) & 0x3F;
210 chan->pcdac[2] = (athvals[loc+1] >> 2) & 0x3F;
211 chan->gainF[2] = ((athvals[loc+1] << 4) & 0x30
    [all...]
  /src/usr.sbin/installboot/
cd9660.c 113 off_t loc; local
159 loc = (off_t)isonum_733(idr->extent) * blocksize;
160 rv = pread(params->fsfd, buf, blocksize, loc);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Weak.h 26 SourceLocation loc; // for diagnostics member in class:clang::WeakInfo
30 : alias(nullptr), loc(SourceLocation()), used(false) {}
31 WeakInfo(IdentifierInfo *Alias, SourceLocation Loc)
32 : alias(Alias), loc(Loc), used(false) {}
34 inline SourceLocation getLocation() const { return loc; }
38 return alias == RHS.getAlias() && loc == RHS.getLocation();
  /src/external/apache2/llvm/dist/libcxx/include/__support/ibm/
locale_mgmt_aix.h 40 _LC_locale_t *newloc, *loc; local
41 if ((loc = (_LC_locale_t *)__xopen_locale(locale)) == NULL)
55 newloc->lc_collate = loc->lc_collate;
57 newloc->lc_ctype = loc->lc_ctype;
59 // newloc->lc_messages = loc->lc_messages;
61 newloc->lc_monetary = loc->lc_monetary;
63 newloc->lc_time = loc->lc_time;
65 newloc->lc_numeric = loc->lc_numeric;
  /src/external/cddl/osnet/dist/common/zfs/
zfs_namecheck.c 70 const char *loc; local
84 for (loc = path; *loc; loc++) {
85 if (!valid_char(*loc)) {
88 *what = *loc;
138 const char *loc, *end; local
164 loc = path;
168 end = loc;
180 if (loc == end)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c/
c-convert.cc 77 location_t loc = EXPR_LOCATION (expr);
101 return fold_convert_loc (loc, type, expr);
119 return fold_build3_loc (loc, COND_EXPR, type,
127 return fold_convert_loc (loc, type, e);
144 tree check = ubsan_instrument_float_cast (loc, type, expr);
75 location_t loc = EXPR_LOCATION (expr); local
  /src/external/gpl3/gcc/dist/gcc/config/avr/
avr-log.cc 224 location_t loc = va_arg (ap, location_t); local
226 if (BUILTINS_LOCATION == loc)
228 else if (UNKNOWN_LOCATION == loc)
232 LOCATION_FILE (loc), LOCATION_LINE (loc));
  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-nonnull-compare.cc 56 location_t loc = gimple_location (stmt); local
87 loc = EXPR_LOC_OR_LOC (op, loc);
101 warning_at (loc, OPT_Wnonnull_compare,
rtl-error.cc 39 location_t loc; local
56 loc = ASM_OPERANDS_SOURCE_LOCATION (asmop);
58 loc = input_location;
59 return loc;
warning-control.cc 90 const location_t loc = get_location (expr); local
92 if (RESERVED_LOCATION_P (loc))
98 return nowarn_map ? nowarn_map->get (loc) : NULL;
106 const location_t loc = get_location (stmt); local
108 if (RESERVED_LOCATION_P (loc))
114 return nowarn_map ? nowarn_map->get (loc) : NULL;
162 const location_t loc = get_location (expr); local
164 if (!RESERVED_LOCATION_P (loc))
165 supp = suppress_warning_at (loc, opt, supp) || supp;
179 const location_t loc = get_location (stmt) local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/avr/
avr-log.cc 224 location_t loc = va_arg (ap, location_t); local
226 if (BUILTINS_LOCATION == loc)
228 else if (UNKNOWN_LOCATION == loc)
232 LOCATION_FILE (loc), LOCATION_LINE (loc));
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-gimplify.cc 145 location_t loc = EXPR_LOC_OR_LOC (*expr_p, input_location); local
171 if (gimplify_arg (&new_arg, pre_p, loc) == GS_ERROR)
imports.cc 79 Loc loc = (m->md != NULL) ? m->md->loc local
80 : Loc (m->srcfile.toChars (), 1, 0);
82 this->result_ = build_decl (make_location_t (loc), NAMESPACE_DECL,
235 input_location = make_location_t (d->loc);

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 91011>>