| /minix3/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/ |
| H A D | tommath.out | 2 \BOOKMARK [1][-]{section.1.1}{Multiple Precision Arithmetic}{chapter.1} 3 \BOOKMARK [2][-]{subsection.1.1.1}{What is Multiple Precision Arithmetic?}{section.1.1} 4 \BOOKMARK [2][-]{subsection.1.1.2}{The Need for Multiple Precision Arithmetic}{section.1.1} 5 \BOOKMARK [2][-]{subsection.1.1.3}{Benefits of Multiple Precision Arithmetic}{section.1.1} 6 \BOOKMARK [1][-]{section.1.2}{Purpose of This Text}{chapter.1} 7 \BOOKMARK [1][-]{section.1.3}{Discussion and Notation}{chapter.1} 8 \BOOKMARK [2][-]{subsection.1.3.1}{Notation}{section.1.3} 9 \BOOKMARK [2][-]{subsection.1.3.2}{Precision Notation}{section.1.3} 10 \BOOKMARK [2][-]{subsection.1.3.3}{Algorithm Inputs and Outputs}{section.1.3} 11 \BOOKMARK [2][-]{subsection.1.3.4}{Mathematical Expressions}{section.1.3} [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/MC/COFF/ |
| H A D | section.s | 4 .section .foo$bar; .long 1 5 .section .foo@bar; .long 1 6 .section ABCDEFGHIJKLMNOPQRSTUVWXYZ; .long 1 7 .section abcdefghijklmnopqrstuvwxyz; .long 1 8 .section _0123456789; .long 1 28 .section s ; .long 1 29 .section s_, "" ; .long 1 30 .section s_a,"a"; .long 1 31 .section s_b,"b"; .long 1 32 .section s_d,"d"; .long 1 [all …]
|
| H A D | linkonce.s | 6 .section s1 10 .section s2 14 .section s3 18 .section s4 22 .section s5 26 .section s6 29 .section s7 33 .section s8 37 .section .foo$bar
|
| H A D | section-comdat.s | 4 .section assocSec, "dr", discard, "assocSym" 7 .section secName, "dr", discard, "Symbol1" 12 .section secName, "dr", one_only, "Symbol2" 17 .section SecName, "dr", same_size, "Symbol3" 22 .section SecName, "dr", same_contents, "Symbol4" 27 .section SecName, "dr", associative, "assocSym" 32 .section SecName, "dr", largest, "Symbol6" 37 .section SecName, "dr", newest, "Symbol7" 42 .section assocSec, "dr", associative, "assocSym"
|
| H A D | section-name-encoding.s | 20 .section s; .long 1 21 .section s1234567; .long 1 36 .section s1234567z; .long 1 43 .section p0\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1 44 .section p1\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1 45 .section p2\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1 46 .section p3\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1 47 .section p4\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1 68 .section sevendigitx; .long 1 93 .section doubleslashv; .long 1
|
| /minix3/external/bsd/llvm/dist/llvm/test/MC/ELF/ |
| H A D | section.s | 5 .section .note.GNU-stack,"",@progbits 6 .section .note.GNU-stack2,"",%progbits 7 .section .note.GNU-,"",@progbits 8 .section -.note.GNU,"","progbits" 17 .section .init 18 .section .fini 19 .section .rodata 20 .section zed, "" 83 .section .note.test,"",@note 101 .section .text.foo,"axG",@progbits,foo,comdat [all …]
|
| /minix3/crypto/external/bsd/openssl/dist/crypto/ts/ |
| H A D | ts_conf.c | 165 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section) in TS_CONF_get_tsa_section() argument 167 if (!section) { in TS_CONF_get_tsa_section() 168 section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_TSA); in TS_CONF_get_tsa_section() 169 if (!section) in TS_CONF_get_tsa_section() 172 return section; in TS_CONF_get_tsa_section() 175 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb, in TS_CONF_set_serial() argument 179 char *serial = NCONF_get_string(conf, section, ENV_SERIAL); in TS_CONF_set_serial() 181 TS_CONF_lookup_fail(section, ENV_SERIAL); in TS_CONF_set_serial() 193 int TS_CONF_set_crypto_device(CONF *conf, const char *section, in TS_CONF_set_crypto_device() argument 199 device = NCONF_get_string(conf, section, ENV_CRYPTO_DEVICE); in TS_CONF_set_crypto_device() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/Sema/ |
| H A D | pragma-section.c | 14 #pragma section(".my_seg", execute) // expected-note 2 {{#pragma entered her}} 34 #pragma section // expected-warning {{missing '(' after '#pragma section' - ignoring}} 35 #pragma section( // expected-warning {{expected a string literal for the section name in '#pragma s… 36 #pragma section(L".my_seg") // expected-warning {{expected a string literal for the section name in… 37 #pragma section(".my_seg" // expected-warning {{missing ')' after '#pragma section' - ignoring}} 38 #pragma section(".my_seg" 1 // expected-warning {{missing ')' after '#pragma section' - ignoring}} 39 #pragma section(".my_seg", // expected-warning {{expected action or ')' in '#pragma section' - ign… 40 #pragma section(".my_seg", read) // expected-error {{this causes a section type conflict with a pri… 41 #pragma section(".my_seg", bogus) // expected-warning {{unknown action 'bogus' for '#pragma section… 42 #pragma section(".my_seg", nopage) // expected-warning {{known but unsupported action 'nopage' for … [all …]
|
| H A D | attr-section.c | 3 int x __attribute__((section( 8 int y __attribute__((section( 13 …__attribute__((section("NEAR,x"))) int n1; // expected-error {{'section' attribute only applies to… in test() 14 __attribute__((section("NEAR,x"))) static int n2; // ok. in test() 18 void __attribute__((section("foo,zed"))) test2(void); // expected-note {{previous attribute is here… 19 void __attribute__((section("bar,zed"))) test2(void) {} // expected-warning {{section does not matc… in test2() 21 enum __attribute__((section("NEAR,x"))) e { one }; // expected-error {{'section' attribute only app…
|
| /minix3/crypto/external/bsd/openssl/dist/crypto/conf/ |
| H A D | conf_api.c | 81 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section) in IMPLEMENT_LHASH_DOALL_ARG_FN() 85 if ((conf == NULL) || (section == NULL)) in IMPLEMENT_LHASH_DOALL_ARG_FN() 88 vv.section = (char *)section; in IMPLEMENT_LHASH_DOALL_ARG_FN() 95 const char *section) in STACK_OF() 99 v = _CONF_get_section(conf, section); in STACK_OF() 106 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) in _CONF_add_string() argument 111 ts = (STACK_OF(CONF_VALUE) *)section->value; in _CONF_add_string() 113 value->section = section->section; in _CONF_add_string() 128 char *_CONF_get_string(const CONF *conf, const char *section, in _CONF_get_string() argument 137 if (section != NULL) { in _CONF_get_string() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/X86/ |
| H A D | osx-private-labels.ll | 8 ; CHECK: .section __TEXT,__cstring,cstring_literals 13 ; CHECK: .section __TEXT,__ustring 20 …stant %struct.NSConstantString { i32* null, i32 1992, i8* null, i32 0 }, section "__DATA,__cfstrin… 21 ; CHECK: .section __DATA,__cfstring 25 ; There is no dedicated 1 or 2 byte constant section on MachO. 28 ; CHECK: .section __TEXT,__literal4,4byte_literals 33 ; CHECK: .section __TEXT,__literal8,8byte_literals 38 ; CHECK: .section __TEXT,__literal16,16byte_literals 43 @private7 = private global %struct._objc_class* null, section "__OBJC,__cls_refs,literal_pointers,n… 44 ; CHECK: .section __OBJC,__cls_refs,literal_pointers,no_dead_strip [all …]
|
| H A D | coff-comdat.ll | 58 ; CHECK: .section .text,"xr",discard,_f1 60 ; CHECK: .section .text,"xr",same_contents,_f2 62 ; CHECK: .section .text,"xr",largest,_f3 64 ; CHECK: .section .text,"xr",one_only,_f4 66 ; CHECK: .section .text,"xr",same_size,_f5 68 ; CHECK: .section .text,"xr",associative,@f7@0 70 ; CHECK: .section .text,"xr",discard,@f7@0 72 ; CHECK: .section .text,"xr",associative,@f8@0 74 ; CHECK: .section .text,"xr",discard,@f8@0 76 ; CHECK: .section .bss,"bw",associative,_f1 [all …]
|
| H A D | global-sections.ll | 12 ; WIN32-SECTIONS: .section .text,"xr",one_only,_F1 32 ; DARWIN: .section __TEXT,__const_coal,coalesced 40 ; DARWIN: .section __DATA,__const 45 ; LINUX: .section .rodata,"a",@progbits 48 ; LINUX-SECTIONS: .section .rodata.G3,"a",@progbits 51 ; WIN32-SECTIONS: .section .rdata,"dr",one_only,_G3 58 ; DARWIN: .section __TEXT,__literal16,16byte_literals 62 ; DARWIN-STATIC: .section __TEXT,__literal16,16byte_literals 66 ; DARWIN64: .section __TEXT,__literal16,16byte_literals 78 ; DARWIN: .section __DATA,__data [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/ |
| H A D | metadata-symbols-32.m | 5 // CHECK: @OBJC_METH_VAR_NAME_{{[0-9]*}} = private global {{.*}}section "__TEXT,__cstring,cstring_l… 6 // CHECK: @OBJC_METH_VAR_TYPE_{{[0-9]*}} = private global {{.*}}section "__TEXT,__cstring,cstring_l… 8 // CHECK-NOT: section 9 // CHECK: @OBJC_CLASS_NAME_{{[0-9]*}} = private global {{.*}}section "__TEXT,__cstring,cstring_lite… 10 // CHECK: @OBJC_PROTOCOL_INSTANCE_METHODS_P = private global {{.*}}section "__OBJC,__cat_inst_meth,… 11 // CHECK: @OBJC_PROTOCOL_CLASS_METHODS_P = private global {{.*}}section "__OBJC,__cat_cls_meth,regu… 12 // CHECK: @OBJC_PROTOCOL_P = private global {{.*}}section "__OBJC,__protocol,regular,no_dead_strip"… 13 // CHECK: @OBJC_CLASS_PROTOCOLS_A = private global {{.*}}section "__OBJC,__cat_cls_meth,regular,no_… 14 // CHECK: @OBJC_CLASS_METHODS_A = private global {{.*}}section "__OBJC,__cls_meth,regular,no_dead_s… 15 // CHECK: @OBJC_METACLASS_A = private global {{.*}}section "__OBJC,__meta_class,regular,no_dead_str… [all …]
|
| H A D | metadata-symbols-64.m | 3 // CHECK: @"OBJC_IVAR_$_A._ivar" = global {{.*}} section "__DATA, __objc_ivar", align 8 7 // CHECK: @"OBJC_METACLASS_$_A" = global {{.*}} section "__DATA, __objc_data", align 8 8 // CHECK: @OBJC_CLASS_NAME_{{[0-9]*}} = private global {{.*}} section "__TEXT,__objc_classname,cstr… 9 // CHECK: @OBJC_METH_VAR_NAME_{{[0-9]*}} = private global {{.*}} section "__TEXT,__objc_methname,cs… 10 // CHECK: @OBJC_METH_VAR_TYPE_{{[0-9]*}} = private global {{.*}} section "__TEXT,__objc_methtype,cs… 11 // CHECK: @"\01l_OBJC_$_CLASS_METHODS_A" = private global {{.*}} section "__DATA, __objc_const", al… 12 // CHECK: @"\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_P" = private global {{.*}} section "__DATA, __obj… 13 // CHECK: @"\01l_OBJC_$_PROTOCOL_CLASS_METHODS_P" = private global {{.*}} section "__DATA, __objc_c… 14 // CHECK: @"\01l_OBJC_PROTOCOL_$_P" = weak hidden global {{.*}} section "__DATA,__datacoal_nt,coale… 15 // CHECK: @"\01l_OBJC_LABEL_PROTOCOL_$_P" = weak hidden global {{.*}} section "__DATA, __objc_proto… [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/MC/ARM/ |
| H A D | big-endian-arm-fixup.s | 9 .section s_condbl,"ax",%progbits 16 .section s_uncondbl,"ax",%progbits 23 .section s_blx,"ax",%progbits 30 .section s_uncondbranch,"ax",%progbits 37 .section s_condbranch,"ax",%progbits 44 .section s_arm_pcrel_10,"ax",%progbits 51 .section s_arm_ldst_pcrel_12,"ax",%progbits 58 .section s_arm_adr_pcrel_12,"ax",%progbits 65 .section s_arm_adr_pcrel_10_unscaled,"ax",%progbits 72 .section s_movw,"ax",%progbits [all …]
|
| H A D | eh-directive-section.s | 4 @ Check the combination of .section, .fnstart, and .fnend directives. 6 @ For the functions in .text section, the exception handling index (EXIDX) 10 @ For the functions in custom section specified by .section directives, 17 @ .TEST1 section 19 .section .TEST1 32 @ TEST2 section (without the dot in the beginning) 34 .section TEST2 47 @ Check the .TEST1 section. 59 @ Check the .ARM.extab.TEST1 section, the EXTAB of .TEST1 section. 73 @ Check the.ARM.exidx.TEST1 section, the EXIDX of .TEST1 section. [all …]
|
| H A D | ldr-pseudo.s | 15 .section b,"ax",%progbits 22 .section c,"ax",%progbits 37 .section d,"ax",%progbits 58 @ a section defined in multiple pieces should be merged and use a single constant pool 59 .section e,"ax",%progbits 68 .section f, "ax", %progbits 75 .section e, "ax", %progbits 89 .section g,"ax",%progbits 95 @ load a symbol from another section 96 .section h,"ax",%progbits [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/bindings/python/llvm/tests/ |
| H A D | test_object.py | 19 for section in o.get_sections(): 21 assert isinstance(section, Section) 22 assert isinstance(section.name, str) 23 assert isinstance(section.size, long) 24 assert isinstance(section.contents, str) 25 assert isinstance(section.address, long) 26 assert len(section.contents) == section.size 30 for section in o.get_sections(): 31 section.cache() 53 section = symbol.section [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/MC/AsmParser/ |
| H A D | section_names.s | 3 .section .nobits 5 .section .nobits2 7 .section .nobitsfoo 9 .section .init_array 11 .section .init_array2 13 .section .init_arrayfoo 15 .section .fini_array 17 .section .fini_array2 19 .section .fini_arrayfoo 21 .section .preinit_array [all …]
|
| /minix3/external/bsd/llvm/dist/clang/utils/ |
| H A D | FindSpecRefs | 607 section,name = name.split(' ',1) 608 if section == 'Annex': 609 section,name = name.split(' ',1) 610 section = 'Annex '+section 612 section = None 618 spec = SpecIndex.fromstring(section) 626 best = (dist, (section, name, page)) 662 section = m.group(2) 664 if section.endswith('.'): 665 section = section[:-1] [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/ARM/ |
| H A D | darwin-section-order.ll | 3 ; CHECK: .section __TEXT,__text,regular,pure_instructions 4 ; CHECK: .section __TEXT,myprecious 5 ; CHECK: .section __TEXT,__textcoal_nt,coalesced,pure_instructions 6 ; CHECK: .section __TEXT,__const_coal,coalesced 7 ; CHECK: .section __TEXT,__picsymbolstub4,symbol_stubs,none,16 8 ; CHECK: .section __TEXT,__StaticInit,regular,pure_instructions 12 ; CHECK: .section __TEXT,__text,regular,pure_instructions 17 define void @special() nounwind readnone section "__TEXT,myprecious" { 18 ; CHECK: .section __TEXT,myprecious
|
| /minix3/lib/libc/nameser/ |
| H A D | ns_parse.c | 88 ns_skiprr(const u_char *ptr, const u_char *eom, ns_sect section, int count) { in ns_skiprr() argument 98 if (section != ns_s_qd) { in ns_skiprr() 149 ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) { in ns_parserr() argument 154 tmp = section; in ns_parserr() 155 if (tmp < 0 || section >= ns_s_max) in ns_parserr() 157 if (section != handle->_sect) in ns_parserr() 158 setsection(handle, section); in ns_parserr() 163 if (rrnum < 0 || rrnum >= handle->_counts[(int)section]) in ns_parserr() 166 setsection(handle, section); in ns_parserr() 168 b = ns_skiprr(handle->_msg_ptr, handle->_eom, section, in ns_parserr() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/MC/AArch64/ |
| H A D | ldr-pseudo.s | 7 .section a, "ax", @progbits 23 .section b,"ax",@progbits 30 .section c,"ax",@progbits 45 .section d,"ax",@progbits 67 .section e,"ax",@progbits 76 .section f, "ax", @progbits 83 .section e, "ax", @progbits 97 .section g,"ax",@progbits 104 .section h,"ax",@progbits 111 .section i,"ax",@progbits [all …]
|
| /minix3/crypto/external/bsd/heimdal/dist/cf/ |
| H A D | install-catman.sh | 18 section=`echo "$f" | sed 's/^[^.]*\.//'` 19 mandir="$manbase/man$section" 20 catdir="$manbase/cat$section" 21 c="$base.cat$section" 40 target="$mandir/$link.$section" 41 for lncmd in "ln -f $mandir/$base.$section $target" \ 42 "ln -s $base.$section $target" \ 43 "cp -f $mandir/$base.$section $target" 64 target="$mandir/$link.$section"
|