Searched refs:loc (Results 26 - 50 of 533) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/llvm-project/lld/ELF/Arch/
H A DHexagon.cpp32 const uint8_t *loc) const override;
34 void relocateOne(uint8_t *loc, RelType type, uint64_t val) const override;
90 const uint8_t *loc) const {
149 error(getErrorLocation(loc) + "unknown relocation (" + Twine(type) +
225 void Hexagon::relocateOne(uint8_t *loc, RelType type, uint64_t val) const { argument
231 or32le(loc, applyMask(findMaskR6(read32le(loc)), val));
234 or32le(loc, applyMask(findMaskR8(read32le(loc)), val));
237 or32le(loc, applyMas
[all...]
H A DAMDGPU.cpp29 void relocateOne(uint8_t *loc, RelType type, uint64_t val) const override;
31 const uint8_t *loc) const override;
61 void AMDGPU::relocateOne(uint8_t *loc, RelType type, uint64_t val) const { argument
68 write32le(loc, val);
72 write64le(loc, val);
76 write32le(loc, val >> 32);
84 const uint8_t *loc) const {
99 error(getErrorLocation(loc) + "unknown relocation (" + Twine(type) +
H A DMips.cpp30 const uint8_t *loc) const override;
40 void relocateOne(uint8_t *loc, RelType type, uint64_t val) const override;
80 const uint8_t *loc) const {
92 warn(getErrorLocation(loc) +
195 error(getErrorLocation(loc) + "unknown relocation (" + Twine(type) +
215 template <endianness E> static uint32_t readShuffle(const uint8_t *loc) { argument
222 uint32_t v = read32(loc);
228 static void writeValue(uint8_t *loc, uint64_t v, uint8_t bitsSize, argument
230 uint32_t instr = read32(loc);
233 write32(loc, dat
237 writeShuffleValue(uint8_t *loc, uint64_t v, uint8_t bitsSize, uint8_t shift) argument
251 writeMicroRelocation16(uint8_t *loc, uint64_t v, uint8_t bitsSize, uint8_t shift) argument
454 calculateMipsRelChain(uint8_t *loc, RelType type, uint64_t val) argument
491 fixupCrossModeJump(uint8_t *loc, RelType type, uint64_t val) argument
540 relocateOne(uint8_t *loc, RelType type, uint64_t val) const argument
[all...]
/freebsd-12-stable/lib/libc/stdtime/
H A Dstrftime.c91 const struct tm * __restrict t, locale_t loc)
95 FIX_LOCALE(loc);
99 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn, loc);
102 (void) fprintf_l(stderr, loc, "\n");
105 else (void) fprintf_l(stderr, loc, "strftime format \"%s\" ",
131 const char * const ptlim, int *warnp, locale_t loc)
134 struct lc_time_T *tptr = __get_current_time_locale(loc);
181 pt, ptlim, loc);
187 pt = _fmt(tptr->c_fmt, t, pt, ptlim, &warn2, loc);
195 pt = _fmt("%m/%d/%y", t, pt, ptlim, warnp, loc);
90 strftime_l(char * __restrict s, size_t maxsize, const char * __restrict format, const struct tm * __restrict t, locale_t loc) argument
130 _fmt(const char *format, const struct tm * const t, char *pt, const char * const ptlim, int *warnp, locale_t loc) argument
590 _conv(const int n, const char * const format, char * const pt, const char * const ptlim, locale_t loc) argument
616 _yconv(const int a, const int b, const int convert_top, const int convert_yy, char *pt, const char * const ptlim, locale_t loc) argument
[all...]
H A Dtimelocal.c123 __get_current_time_locale(locale_t loc) argument
125 return (loc->using_time_locale
126 ? &((struct xlocale_time *)loc->components[XLC_TIME])->locale
145 void* __time_load(const char* name, locale_t loc) argument
149 if (time_load_locale(new, &loc->using_time_locale, name) == _LDP_ERROR)
/freebsd-12-stable/contrib/llvm-project/lld/ELF/
H A DTarget.cpp94 template <class ELFT> static ErrorPlace getErrPlace(const uint8_t *loc) { argument
95 assert(loc != nullptr);
109 if (isecLoc <= loc && loc < isecLoc + isec->getSize())
110 return {isec, isec->template getLocation<ELFT>(loc - isecLoc) + ": "};
115 ErrorPlace getErrorPlace(const uint8_t *loc) { argument
118 return getErrPlace<ELF32LE>(loc);
120 return getErrPlace<ELF32BE>(loc);
122 return getErrPlace<ELF64LE>(loc);
124 return getErrPlace<ELF64BE>(loc);
144 adjustPrologueForCrossSplitStack(uint8_t *loc, uint8_t *end, uint8_t stOther) const argument
158 relaxGot(uint8_t *loc, RelType type, uint64_t val) const argument
162 relaxTlsGdToLe(uint8_t *loc, RelType type, uint64_t val) const argument
167 relaxTlsGdToIe(uint8_t *loc, RelType type, uint64_t val) const argument
172 relaxTlsIeToLe(uint8_t *loc, RelType type, uint64_t val) const argument
177 relaxTlsLdToLe(uint8_t *loc, RelType type, uint64_t val) const argument
[all...]
H A DTarget.h30 const uint8_t *loc) const = 0;
78 virtual bool adjustPrologueForCrossSplitStack(uint8_t *loc, uint8_t *end,
85 virtual void relocateOne(uint8_t *loc, RelType type, uint64_t val) const = 0;
132 virtual void relaxGot(uint8_t *loc, RelType type, uint64_t val) const;
133 virtual void relaxTlsGdToIe(uint8_t *loc, RelType type, uint64_t val) const;
134 virtual void relaxTlsGdToLe(uint8_t *loc, RelType type, uint64_t val) const;
135 virtual void relaxTlsIeToLe(uint8_t *loc, RelType type, uint64_t val) const;
136 virtual void relaxTlsLdToLe(uint8_t *loc, RelType type, uint64_t val) const;
162 std::string loc; member in struct:lld::elf::ErrorPlace
166 ErrorPlace getErrorPlace(const uint8_t *loc);
168 getErrorLocation(const uint8_t *loc) argument
199 reportRangeError(uint8_t *loc, RelType type, const Twine &v, int64_t min, uint64_t max) argument
213 checkInt(uint8_t *loc, int64_t v, int n, RelType type) argument
219 checkUInt(uint8_t *loc, uint64_t v, int n, RelType type) argument
225 checkIntUInt(uint8_t *loc, uint64_t v, int n, RelType type) argument
233 checkAlignment(uint8_t *loc, uint64_t v, int n, RelType type) argument
[all...]
/freebsd-12-stable/lib/libc/locale/
H A Dlnumeric.h51 struct lc_numeric_T *__get_current_numeric_locale(locale_t loc);
H A Dlmessages.c72 messages_load_locale(struct xlocale_messages *loc, int *using_locale, const char *name) argument
75 struct lc_messages_T *l = &loc->locale;
78 &loc->buffer, "LC_MESSAGES",
108 __get_current_messages_locale(locale_t loc) argument
110 return (loc->using_messages_locale
111 ? &((struct xlocale_messages *)loc->components[XLC_MESSAGES])->locale
H A Dlnumeric.c66 numeric_load_locale(struct xlocale_numeric *loc, int *using_locale, int *changed, argument
70 struct lc_numeric_T *l = &loc->locale;
73 &loc->buffer, "LC_NUMERIC",
111 __get_current_numeric_locale(locale_t loc) argument
113 return (loc->using_numeric_locale
114 ? &((struct xlocale_numeric *)loc->components[XLC_NUMERIC])->locale
H A Dxlocale.c157 set_thread_locale(locale_t loc) argument
159 locale_t l = (loc == LC_GLOBAL_LOCALE) ? 0 : loc;
177 __set_thread_rune_locale(loc);
188 locale_t loc = l; local
191 if (loc->components[type]) {
192 xlocale_release(loc->components[type]);
195 if (loc->csym) {
196 free(loc->csym);
335 freelocale(locale_t loc) argument
351 querylocale(int mask, locale_t loc) argument
365 uselocale(locale_t loc) argument
[all...]
/freebsd-12-stable/crypto/openssl/crypto/x509/
H A Dx509name.c87 X509_NAME_ENTRY *X509_NAME_get_entry(const X509_NAME *name, int loc) argument
89 if (name == NULL || sk_X509_NAME_ENTRY_num(name->entries) <= loc
90 || loc < 0)
93 return sk_X509_NAME_ENTRY_value(name->entries, loc);
96 X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc) argument
102 if (name == NULL || sk_X509_NAME_ENTRY_num(name->entries) <= loc
103 || loc < 0)
107 ret = sk_X509_NAME_ENTRY_delete(sk, loc);
110 if (loc == n)
114 if (loc !
136 X509_NAME_add_entry_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len, int loc, int set) argument
151 X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, const unsigned char *bytes, int len, int loc, int set) argument
165 X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set) argument
183 X509_NAME_add_entry(X509_NAME *name, const X509_NAME_ENTRY *ne, int loc, int set) argument
[all...]
/freebsd-12-stable/contrib/gcc/config/i386/
H A Dlinux-unwind.h71 fs->regs.reg[0].loc.offset = (long)&sc->rax - new_cfa;
73 fs->regs.reg[1].loc.offset = (long)&sc->rdx - new_cfa;
75 fs->regs.reg[2].loc.offset = (long)&sc->rcx - new_cfa;
77 fs->regs.reg[3].loc.offset = (long)&sc->rbx - new_cfa;
79 fs->regs.reg[4].loc.offset = (long)&sc->rsi - new_cfa;
81 fs->regs.reg[5].loc.offset = (long)&sc->rdi - new_cfa;
83 fs->regs.reg[6].loc.offset = (long)&sc->rbp - new_cfa;
85 fs->regs.reg[8].loc.offset = (long)&sc->r8 - new_cfa;
87 fs->regs.reg[9].loc.offset = (long)&sc->r9 - new_cfa;
89 fs->regs.reg[10].loc
[all...]
/freebsd-12-stable/sys/fs/ext2fs/
H A Dfs.h131 #define blkoff(fs, loc) /* calculates (loc % fs->fs_bsize) */ \
132 ((loc) & (fs)->e2fs_qbmask)
137 #define lblkno(fs, loc) /* calculates (loc / fs->fs_bsize) */ \
138 ((loc) >> (fs->e2fs_bshift))
141 #define numfrags(fs, loc) /* calculates (loc / fs->fs_fsize) */ \
142 ((loc) >> (fs->e2fs_bshift))
/freebsd-12-stable/contrib/gcc/
H A Dvar-tracking.c139 rtx loc; member in union:micro_operation_def::__anon1579
174 rtx loc; member in struct:attrs_def
221 rtx loc; member in struct:location_chain_def
490 if (MEM_P (VTI (bb)->mos[i].u.loc))
492 VTI (bb)->mos[i].u.loc
493 = adjust_stack_reference (VTI (bb)->mos[i].u.loc, -offset);
679 attrs_list_insert (attrs *listp, tree decl, HOST_WIDE_INT offset, rtx loc) argument
684 list->loc = loc;
702 n->loc
825 var_reg_set(dataflow_set *set, rtx loc) argument
849 var_reg_delete_and_set(dataflow_set *set, rtx loc, bool modify) argument
884 var_reg_delete(dataflow_set *set, rtx loc, bool clobber) argument
930 var_mem_set(dataflow_set *set, rtx loc) argument
948 var_mem_delete_and_set(dataflow_set *set, rtx loc, bool modify) argument
965 var_mem_delete(dataflow_set *set, rtx loc, bool clobber) argument
1562 same_variable_part_p(rtx loc, tree expr, HOST_WIDE_INT offset) argument
1597 count_uses(rtx *loc, void *insn) argument
1629 count_stores(rtx loc, rtx expr ATTRIBUTE_UNUSED, void *insn) argument
1638 add_uses(rtx *loc, void *insn) argument
1683 add_stores(rtx loc, rtx expr, void *insn) argument
1757 rtx loc = VTI (bb)->mos[i].u.loc; local
1768 rtx loc = VTI (bb)->mos[i].u.loc; local
1779 rtx loc = VTI (bb)->mos[i].u.loc; local
1790 rtx loc = VTI (bb)->mos[i].u.loc; local
1801 rtx loc = VTI (bb)->mos[i].u.loc; local
2102 set_variable_part(dataflow_set *set, rtx loc, tree decl, HOST_WIDE_INT offset) argument
2214 clobber_variable_part(dataflow_set *set, rtx loc, tree decl, HOST_WIDE_INT offset) argument
2274 delete_variable_part(dataflow_set *set, rtx loc, tree decl, HOST_WIDE_INT offset) argument
2373 rtx loc[MAX_VAR_PARTS]; local
2627 rtx loc = VTI (bb)->mos[i].u.loc; local
2640 rtx loc = VTI (bb)->mos[i].u.loc; local
2653 rtx loc = VTI (bb)->mos[i].u.loc; local
2666 rtx loc = VTI (bb)->mos[i].u.loc; local
2679 rtx loc = VTI (bb)->mos[i].u.loc; local
[all...]
H A Dtree-phinodes.c313 tree *loc; local
317 for (loc = &(bb->phi_nodes);
318 *loc;
319 loc = &PHI_CHAIN (*loc))
321 if (len > PHI_ARG_CAPACITY (*loc))
323 tree old_phi = *loc;
325 resize_phi_node (loc, cap);
328 SSA_NAME_DEF_STMT (PHI_RESULT (*loc)) = *loc;
448 tree *loc; local
[all...]
H A Drtl-error.c45 location_t loc; local
63 loc = ASM_OPERANDS_SOURCE_LOCATION (asmop);
66 loc.file = ASM_OPERANDS_SOURCE_FILE (asmop);
67 loc.line = ASM_OPERANDS_SOURCE_LINE (asmop);
71 loc = input_location;
72 return loc;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Edit/
H A DCommit.h70 bool insert(SourceLocation loc, StringRef text, bool afterToken = false,
73 bool insertAfterToken(SourceLocation loc, StringRef text, argument
75 return insert(loc, text, /*afterToken=*/true, beforePreviousInsertions);
78 bool insertBefore(SourceLocation loc, StringRef text) { argument
79 return insert(loc, text, /*afterToken=*/false,
83 bool insertFromRange(SourceLocation loc, CharSourceRange range,
92 bool replaceText(SourceLocation loc, StringRef text,
95 bool insertFromRange(SourceLocation loc, SourceRange TokenRange, argument
98 return insertFromRange(loc, CharSourceRange::getTokenRange(TokenRange),
132 bool canInsert(SourceLocation loc, FileOffse
[all...]
/freebsd-12-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryUtils.h72 static inline uint16_t read16(const T *loc, bool isBig) { argument
73 assert((uint64_t)loc % alignof(T) == 0 && "invalid pointer alignment");
74 return isBig ? read16be(loc) : read16le(loc);
78 static inline uint32_t read32(const T *loc, bool isBig) { argument
79 assert((uint64_t)loc % alignof(T) == 0 && "invalid pointer alignment");
80 return isBig ? read32be(loc) : read32le(loc);
84 static inline uint64_t read64(const T *loc, bool isBig) { argument
85 assert((uint64_t)loc
89 write16(uint8_t *loc, uint16_t value, bool isBig) argument
96 write32(uint8_t *loc, uint32_t value, bool isBig) argument
103 write64(uint8_t *loc, uint64_t value, bool isBig) argument
[all...]
/freebsd-12-stable/sys/mips/nlm/hal/
H A Dmips-extns.h38 static __inline__ int32_t nlm_swapw(int32_t *loc, int32_t val) argument
50 : "+m" (*loc), "=r" (oldval)
51 : "r" (loc), "r" (val)
57 static __inline__ uint32_t nlm_swapwu(int32_t *loc, uint32_t val) argument
69 : "+m" (*loc), "=r" (oldval)
70 : "r" (loc), "r" (val)
77 static __inline__ uint64_t nlm_swapd(int32_t *loc, uint64_t val) argument
89 : "+m" (*loc), "=r" (oldval)
90 : "r" (loc), "r" (val)
/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_gsupport.cpp24 #define MKLOC(loc, routine) \
25 static ident_t loc = {0, KMP_IDENT_KMPC, 0, 0, ";unknown;unknown;0;0;;"};
31 MKLOC(loc, "GOMP_barrier");
41 __kmpc_barrier(&loc, gtid);
62 MKLOC(loc, "GOMP_critical_start");
67 __kmpc_critical(&loc, gtid, __kmp_unnamed_critical_addr);
72 MKLOC(loc, "GOMP_critical_end");
77 __kmpc_end_critical(&loc, gtid, __kmp_unnamed_critical_addr);
82 MKLOC(loc, "GOMP_critical_name_start");
84 __kmpc_critical(&loc, gti
322 __kmp_GOMP_parallel_microtask_wrapper(int *gtid, int *npr, void (*task)(void *), void *data, unsigned num_threads, ident_t *loc, enum sched_type schedule, long start, long end, long incr, long chunk_size) argument
368 __kmp_GOMP_fork_call(ident_t *loc, int gtid, void (*unwrapped_task)(void *), microtask_t wrapper, int argc, ...) argument
406 __kmp_GOMP_serialized_parallel(ident_t *loc, kmp_int32 gtid, void (*task)(void *)) argument
[all...]
/freebsd-12-stable/crypto/openssh/regress/unittests/utf8/
H A Dtests.c57 char *loc; local
60 loc = setlocale(LC_CTYPE, "en_US.UTF-8");
61 ASSERT_PTR_NE(loc, NULL);
82 loc = setlocale(LC_CTYPE, "C");
83 ASSERT_PTR_NE(loc, NULL);
/freebsd-12-stable/sys/arm/arm/
H A Ddb_disasm.c75 db_disasm(vm_offset_t loc, bool altfmt) argument
78 return disasm(&db_disasm_interface, loc, altfmt);
/freebsd-12-stable/sys/arm64/arm64/
H A Ddb_disasm.c64 db_disasm(vm_offset_t loc, bool altfmt) argument
67 return (disasm(&db_disasm_interface, loc, altfmt));
/freebsd-12-stable/contrib/amd/amd/
H A Dmntfs.c52 dup_loc(am_loc *loc) argument
54 loc->al_refc++;
55 if (loc->al_mnt) {
56 dup_mntfs(loc->al_mnt);
58 return loc;
220 am_loc *loc = CALLOC(struct am_loc); local
221 loc->al_fo = 0;
222 loc->al_mnt = new_mntfs();
223 loc->al_refc = 1;
224 return loc;
279 am_loc *loc = v; local
304 am_loc *loc = (am_loc *) arg; local
[all...]

Completed in 326 milliseconds

1234567891011>>