Searched refs:extension (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-9.3-release/contrib/gdb/include/
H A Dhp-symtab.h142 extension and immediate will always be one.
148 unsigned int extension: 1; member in struct:dnttp_immediate
157 extension will always be one.
164 unsigned int extension: 1; member in struct:dnttp_nonimmediate
210 The first bit in each block is an extension bit. This bit is zero
307 unsigned int extension: 1; member in struct:dntt_type_srcfile
334 unsigned int extension: 1; member in struct:dntt_type_module
384 unsigned int extension: 1; member in struct:dntt_type_function
421 unsigned int extension: 1; member in struct:dntt_type_begin
446 unsigned int extension member in struct:dntt_type_end
482 unsigned int extension: 1; member in struct:dntt_type_fparam
522 unsigned int extension: 1; member in struct:dntt_type_svar
561 unsigned int extension: 1; member in struct:dntt_type_dvar
597 unsigned int extension: 1; member in struct:dntt_type_const
634 unsigned int extension: 1; member in struct:dntt_type_type
659 unsigned int extension: 1; member in struct:dntt_type_pointer
680 unsigned int extension: 1; member in struct:dntt_type_enum
701 unsigned int extension: 1; member in struct:dntt_type_memenum
722 unsigned int extension: 1; member in struct:dntt_type_set
753 unsigned int extension: 1; member in struct:dntt_type_subrange
796 unsigned int extension: 1; member in struct:dntt_type_array
828 unsigned int extension: 1; member in struct:dntt_type_struct
848 unsigned int extension: 1; member in struct:dntt_type_union
880 unsigned int extension: 1; member in struct:dntt_type_field
910 unsigned int extension: 1; member in struct:dntt_type_functype
939 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_with
999 unsigned int extension: 1; /* Always zero. */ member in struct:dntt_type_class_scope
1016 unsigned int extension: 1; /* Always zero. */ member in struct:dntt_type_ptrmem
1025 unsigned int extension: 1; /* Always zero. */ member in struct:dntt_type_ptrmemfunc
1040 unsigned int extension: 1; /* Always zero. */ member in struct:dntt_type_class
1062 unsigned int extension: 1; /* Always zero. */ member in struct:dntt_type_genfield
1075 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_vfunc
1087 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_memaccess
1101 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_inheritance
1116 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_friend_class
1125 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_friend_func
1140 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_modifier
1156 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_object_id
1179 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_template
1204 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_templ_arg
1231 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_func_template
1257 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_link
1278 unsigned int extension: 1; /* always zero */ member in struct:dntt_type_doc_function
1315 unsigned int extension: 1; member in struct:dntt_type_block
[all...]
/freebsd-9.3-release/contrib/sendmail/libsmdb/
H A Dsmdb.c171 ** the file name extension.
253 ** SMDB_ADD_EXTENSION -- Adds an extension to a file name.
256 ** is room and the db_name does not already have that extension.
262 ** extension -- The extension to add.
271 smdb_add_extension(full_name, max_full_name_len, db_name, extension)
275 char *extension;
280 if (full_name == NULL || db_name == NULL || extension == NULL)
283 extension_len = strlen(extension);
291 strcmp(&db_name[db_name_len - extension_len], extension) !
[all...]
/freebsd-9.3-release/libexec/rtld-aout/
H A Dshlib.c274 char *extension; local
282 extension = dp->d_name + 3 + namelen + 1; /* a or so.* */
284 if(strncmp(extension, "so.", 3) == 0) {
288 cur_ndewey = getdewey(cur_dewey, extension+3);
310 } else if(do_dot_a && strcmp(extension, "a") == 0)
/freebsd-9.3-release/contrib/tcsh/
H A Dtw.color.c102 Str extension; /* file extension */ member in struct:__anon4212
228 if (getstring(&c, &v, &e->extension, '=') &&
229 0 < e->extension.len) {
309 if (len >= extensions[i].extension.len
310 && strncmp(last - extensions[i].extension.len,
311 extensions[i].extension.s,
312 extensions[i].extension.len) == 0) {
/freebsd-9.3-release/crypto/openssl/crypto/dso/
H A Ddso_dl.c304 static const char extension[] = ".sl"; variable
306 static const char extension[] = ".so"; variable
318 rsize += strlen(extension); /* The length of ".s?" */
329 sprintf(translated, "lib%s%s", filename, extension);
331 sprintf(translated, "%s%s", filename, extension);
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DPath.h121 /// @brief Replace the file extension of \a path with \a extension.
124 /// ./filename.cpp => ./filename.extension
125 /// ./filename => ./filename.extension
126 /// ./ => ./.extension
129 /// @param path A path that has its extension replaced with \a extension.
130 /// @param extension The extension to be added. It may be empty. It may also
133 void replace_extension(SmallVectorImpl<char> &path, const Twine &extension);
[all...]
/freebsd-9.3-release/contrib/texinfo/info/
H A Dfilesys.c608 /* Find the final extension of this filename, and see if it matches one
623 char *extension = (char *)NULL; local
625 /* Find the final extension of FILENAME, and see if it appears in our
630 extension = filename + i;
634 if (!extension)
638 if (FILENAME_CMP (extension, compress_suffixes[i].suffix) == 0)
642 /* If no other suffix matched, allow any extension which ends
646 if (extension[strlen (extension) - 1] == 'z' ||
647 extension[strle
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dsee.c1 /* Sign extension elimination optimization for GNU compiler.
25 extension instructions are generated to ensure the correctness of
28 extension right after each 32bit computation.
30 sign extension instructions may be redundant.
31 There are two cases in which the extension may be redundant:
62 First, try to merge the sign extension with the instruction that
63 defines the source of the extension and (separately) with the
152 Remove the sign extension instruction, modify def1 and
158 Def2 is not changed but a sign extension instruction is
167 (The extension instructio
671 see_get_extension_reg(rtx extension, bool return_dest_reg) argument
719 see_get_extension_data(rtx extension, enum machine_mode *source_mode) argument
770 rtx extension = NULL; local
834 const struct see_pre_extension_expr *extension = p; local
852 struct see_pre_extension_expr *extension = p; local
1013 see_seek_pre_extension_expr(rtx extension, enum extension_type type) argument
1401 see_want_to_be_merged_with_extension(rtx ref, rtx extension, enum extension_type type) argument
[all...]
H A Dgenrecog.c2418 char extension[32];
2424 sprintf (extension, "_%d", subfunction);
2426 extension[0] = '\0';
2428 strcpy (extension, "_insns");
2434 recog%s (rtx x0 ATTRIBUTE_UNUSED,\n\trtx insn ATTRIBUTE_UNUSED,\n\tint *pnum_clobbers ATTRIBUTE_UNUSED)\n", s_or_e, extension);
2439 s_or_e, extension);
2444 s_or_e, extension);
2411 char extension[32]; local
/freebsd-9.3-release/contrib/ntp/sntp/libevent/test/
H A Dtinytest.c387 const char *extension = ""; local
389 extension = ".exe"; /* Add an exe so CreateProcess will work */
390 snprintf(commandname, sizeof(commandname), "%s%s", v[0], extension);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DFrontendActions.cpp70 NewSuffix + llvm::sys::path::extension(Path));
80 llvm::sys::path::extension(Filename), fd,
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_conf.c59 /* extension creation utilities */
132 /* Now get internal extension representation based on type */
216 /* Given an internal structure, nid and critical flag create an extension */
228 /* Check the extension string for critical flag */
241 /* Check extension string for generic extension and return the type */
261 /* Create a generic extension: for now just handle DER type */
270 X509_EXTENSION *extension = NULL; local
299 extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct);
306 return extension;
[all...]
/freebsd-9.3-release/contrib/bmake/mk/
H A Dwarnings.mk99 # NOTE: that we force the target extension to be .o
124 # NOTE: that we force the target extension to be .o
H A Dman.mk11 # 3. install formatted pages but with extension of .0
/freebsd-9.3-release/contrib/nvi/build/ExtUtils/
H A DEmbed.pm317 each static extension found in B<$Config{static_ext}>.
391 for each extension that is found by searching B<@INC> or the path
400 This will do the same as the above example, along with printing additional arguments for linking with the B<Socket> extension.
406 This will print arguments for linking with just the B<DynaLoader> extension
/freebsd-9.3-release/contrib/cvs/contrib/
H A Dpvcs2rcs.in117 # NOTE: Each possible binary extension is listed as a Perl regexp
222 ( -x | --RCS-Extension ) Set RCS file extension
225 the file extension
227 a binary extension (default)
264 'rcs-extension' => ",v",
610 $rcsarchive .= $options{'rcs-extension'} if ($options{'rcs-extension'});
781 . (@hits ? "file type is '$bin_ext{$hits[0]}' for extension '$&'" : "forced")
983 "rcs-extension=s", "verify|v=s", "vcsid|i=s", "verbose!", "debug!",
1088 $rcs_base_command .= " -x$options{'rcs-extension'}" i
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dmips-tdep.c1015 x |= 0xffff0000; /* sign extension */
1206 then, only the fields which are involved in instruction extension */
1216 for the bits which make up the immediatate extension. */
1219 extended_offset (unsigned int extension) argument
1222 value = (extension >> 21) & 0x3f; /* * extract 15:11 */
1224 value |= (extension >> 16) & 0x1f; /* extrace 10:5 */
1226 value |= extension & 0x01f; /* extract 4:0 */
1233 the extension is performed.
1235 /* FIXME: Every one of these cases needs to worry about sign extension
1250 unsigned int extension,
1249 unpack_mips16(CORE_ADDR pc, unsigned int extension, unsigned int inst, enum mips16_inst_fmts insn_format, struct upk_mips16 *upk) argument
1340 extended_mips16_next_pc(CORE_ADDR pc, unsigned int extension, unsigned int insn) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DPath.cpp433 void replace_extension(SmallVectorImpl<char> &path, const Twine &extension) {
436 StringRef ext = extension.toStringRef(ext_storage);
438 // Erase existing extension.
447 // Append extension.
484 const StringRef extension(StringRef path) {
611 return !extension(p).empty();
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DHeaderSearch.cpp298 assert(llvm::sys::path::extension(DirName) == ".framework" &&
330 if (llvm::sys::path::extension(DirName) == ".framework") {
454 if (llvm::sys::path::extension(FrameworkPath) == ".framework") {
1139 if (llvm::sys::path::extension(Dir->path()) != ".framework")
H A DPPLexerChange.cpp434 // Check whether this entry has an extension typically associated with
436 if (!StringSwitch<bool>(llvm::sys::path::extension(Entry->path()))
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp764 if (llvm::sys::path::extension(D->path()) != ".pcm") {
768 if (llvm::sys::path::extension(D->path()) == ".pcm.lock")
/freebsd-9.3-release/contrib/file/
H A DREADME126 * File extension, if applicable
/freebsd-9.3-release/contrib/gcclibs/libcpp/
H A Dfiles.c247 static const char extension[] = ".gch"; local
259 len = flen + sizeof (extension);
262 memcpy (pchname + flen, extension, sizeof (extension));
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DFileRemapper.cpp151 path::extension(origFE->getName()), fd,
/freebsd-9.3-release/contrib/sendmail/cf/cf/
H A Dsubmit.cf308 # time for DeliverBy; extension disabled if less than 0
856 R< local : $* > $* $: $>MailerToTriple < local : $1 > $2 no host extension
857 R< error : $* > $* $: $>MailerToTriple < error : $1 > $2 no host extension

Completed in 491 milliseconds

12