Searched refs:ext (Results 151 - 175 of 622) sorted by relevance

1234567891011>>

/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/gp_hash_table_map_/
H A Derase_fn_imps.hpp105 #include <ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp>
106 #include <ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp>
H A Dgp_ht_map_.hpp47 #include <ext/pb_ds/tag_and_trait.hpp>
48 #include <ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp>
49 #include <ext/pb_ds/detail/types_traits.hpp>
50 #include <ext/pb_ds/exception.hpp>
51 #include <ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp>
57 #include <ext/pb_ds/detail/map_debug_base.hpp>
167 #include <ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp>
168 #include <ext/pb_ds/detail/unordered_iterator/point_iterator.hpp>
169 #include <ext/pb_ds/detail/unordered_iterator/const_iterator.hpp>
170 #include <ext/pb_d
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/
H A Dtype_utils.hpp54 #include <ext/type_traits.h>
55 #include <ext/numeric_traits.h>
/macosx-10.10.1/libstdcxx-104.1/src/
H A Dglobals_io.cc33 #include <ext/stdio_filebuf.h>
34 #include <ext/stdio_sync_filebuf.h>
H A Dmisc-inst.cc38 #include <ext/stdio_sync_filebuf.h>
/macosx-10.10.1/llvmCore-3425.0.34/utils/
H A DUpdateCMakeLists.pl31 my $ext = $1;
34 if ($ext eq $x) {
/macosx-10.10.1/ruby-106/ruby/
H A Ddln_find.c134 const char *ext = 0; local
177 ext = 0;
181 ext = p;
188 if (ext) {
189 for (j = 0; STRCASECMP(ext, extension[j]); ) {
191 ext = 0;
201 RETURN_IF(ext);
283 if (exe_flag && !ext) {
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/incrTcl/itk/
H A Dconfigure.in108 #CLEANFILES="$CLEANFILES *.ext"
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Ddccp.h92 const int ext = DCCPH_X(hdrg) ? sizeof(struct dccp_hdr_ext) : 0;
94 return (struct dccp_hdr_data *)(((u_char *)hdrg) + sizeof(hdrg) + ext);
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/setkey/
H A Dtest-pfkey.c400 key_setsadbid(ext, str)
401 u_int ext;
409 m_id.sadb_ident_exttype = ext;
423 key_setsadblft(ext, time)
424 u_int ext, time;
429 m_lft.sadb_lifetime_exttype = ext;
459 key_setsadbkey(ext, str)
460 u_int ext;
469 m_key.sadb_key_exttype = ext;
502 key_setsadbaddr(ext, a
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/disassembler/udis86/
H A Dud_opcode.py183 for ext in ('/mod', '/x87', '/reg', '/rm', '/sse',
185 if ext in insn.opcext:
186 table = self.updateTable(table, index, ext, ext)
187 index = insn.opcext[ext]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A Dcsutilities.cpp120 const CSSM_X509_EXTENSION *ext = (const CSSM_X509_EXTENSION *)(*p)->Data; local
121 if (oid == ext->extnId) {
143 const CSSM_X509_EXTENSION *ext = (const CSSM_X509_EXTENSION *)data->Data; local
144 assert(ext->format == CSSM_X509_DATAFORMAT_PARSED);
145 const CE_CertPolicies *policies = (const CE_CertPolicies *)ext->value.parsedValue;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dcsutilities.cpp120 const CSSM_X509_EXTENSION *ext = (const CSSM_X509_EXTENSION *)(*p)->Data; local
121 if (oid == ext->extnId) {
143 const CSSM_X509_EXTENSION *ext = (const CSSM_X509_EXTENSION *)data->Data; local
144 assert(ext->format == CSSM_X509_DATAFORMAT_PARSED);
145 const CE_CertPolicies *policies = (const CE_CertPolicies *)ext->value.parsedValue;
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Drelocate.cpp134 char *ext = strtok(tmpathext, PATH_SEP); local
135 while (ext) {
136 char *namex = new char[strlen(name) + strlen(ext) + 1];
138 strcat(namex, ext);
143 ext = strtok(0, PATH_SEP);
/macosx-10.10.1/ruby-106/ruby/sample/openssl/
H A Dcertstore.rb127 cert.extensions.each do |ext|
129 case ext.oid
131 /CA:(TRUE|FALSE), pathlen:(\d+)/ =~ ext.value
134 usage = ext.value.split(/\s*,\s*/)
137 usage = ext.value.split(/\s*,\s*/)
/macosx-10.10.1/ruby-106/ruby/test/rake/
H A Dtest_rake_file_list.rb290 assert_equal "one.net", "one.two".ext("net")
291 assert_equal "one.net", "one.two".ext(".net")
292 assert_equal "one.net", "one".ext("net")
293 assert_equal "one.net", "one".ext(".net")
294 assert_equal "one.two.net", "one.two.c".ext(".net")
295 assert_equal "one/two.net", "one/two.c".ext(".net")
296 assert_equal "one.x/two.net", "one.x/two.c".ext(".net")
297 assert_equal "one.x/two.net", "one.x/two".ext(".net")
298 assert_equal ".onerc.net", ".onerc.dot".ext("net")
299 assert_equal ".onerc.net", ".onerc".ext("ne
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/openssl/
H A Dossl_x509crl.c436 X509_EXTENSION *ext; local
447 ext = X509_CRL_get_ext(crl, i); /* NO DUP - don't free! */
448 rb_ary_push(ary, ossl_x509ext_new(ext));
461 X509_EXTENSION *ext; local
473 ext = DupX509ExtPtr(RARRAY_PTR(ary)[i]);
474 if(!X509_CRL_add_ext(crl, ext, -1)) { /* DUPs ext - FREE it */
475 X509_EXTENSION_free(ext);
478 X509_EXTENSION_free(ext);
488 X509_EXTENSION *ext; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dprint.c769 #define ext(name, checkname) #name, &asn1_oid_id_x509_ce_##name, check_##checkname macro
770 { ext(subjectDirectoryAttributes, Null), M_N_C },
771 { ext(subjectKeyIdentifier, subjectKeyIdentifier), M_N_C },
772 { ext(keyUsage, Null), S_C },
773 { ext(subjectAltName, subjectAltName), M_N_C },
774 { ext(issuerAltName, issuerAltName), S_N_C },
775 { ext(basicConstraints, basicConstraints), D_C },
776 { ext(cRLNumber, Null), M_N_C },
777 { ext(cRLReason, Null), M_N_C },
778 { ext(holdInstructionCod
792 #undef ext macro
793 #define ext macro
796 #undef ext macro
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/x509/
H A Dx509_req.c188 ASN1_TYPE *ext = NULL; local
200 if(attr->single) ext = attr->value.single;
202 ext = sk_ASN1_TYPE_value(attr->value.set, 0);
205 if(!ext || (ext->type != V_ASN1_SEQUENCE))
207 p = ext->value.sequence->data;
209 ext->value.sequence->length,
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A DpeXXigen.c98 SYMENT *ext = (SYMENT *) ext1;
101 if (ext->e.e_name[0] == 0)
104 in->_n._n_n._n_offset = H_GET_32 (abfd, ext->e.e.e_offset);
107 memcpy (in->_n._n_name, ext->e.e_name, SYMNMLEN);
109 in->n_value = H_GET_32 (abfd, ext->e_value);
110 in->n_scnum = H_GET_16 (abfd, ext->e_scnum);
112 if (sizeof (ext->e_type) == 2)
113 in->n_type = H_GET_16 (abfd, ext->e_type);
115 in->n_type = H_GET_32 (abfd, ext->e_type);
117 in->n_sclass = H_GET_8 (abfd, ext
97 SYMENT *ext = (SYMENT *) ext1; local
196 SYMENT *ext = (SYMENT *) extp; local
229 AUXENT *ext = (AUXENT *) ext1; local
301 AUXENT *ext = (AUXENT *) extp; local
368 LINENO *ext = (LINENO *) ext1; local
379 struct external_lineno *ext = (struct external_lineno *) outp; local
[all...]
/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_x509cert.rb91 ca_cert.extensions.each_with_index{|ext, i|
92 assert_equal(ca_exts[i].first, ext.oid)
93 assert_equal(ca_exts[i].last, ext.critical?)
106 ee1_cert.extensions.each_with_index{|ext, i|
107 assert_equal(ee1_exts[i].first, ext.oid)
108 assert_equal(ee1_exts[i].last, ext.critical?)
121 ee2_cert.extensions.each_with_index{|ext, i|
122 assert_equal(ee2_exts[i].first, ext.oid)
123 assert_equal(ee2_exts[i].last, ext.critical?)
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/InspectorServer/efl/
H A DWebInspectorServerEfl.cpp71 String ext = localPath.substring(extStart + 1);
72 if (ext.isEmpty())
75 contentType = WebCore::MIMETypeRegistry::getMIMETypeForExtension(ext);
/macosx-10.10.1/emacs-93/emacs/lisp/international/
H A Dlatexenc.el160 (dolist (ext `("" ,(if (boundp 'TeX-default-extension)
165 (file-exists-p (concat file ext)))
166 (setq latexenc-main-file (concat file ext)))))))
/macosx-10.10.1/ruby-106/ruby/lib/rake/ext/
H A Dstring.rb1 require 'rake/ext/core'
8 rake_extension("ext") do
13 # +ext+ is a user added method for the String class.
14 def ext(newext='') method in class:String
122 # "/path/to/file.TXT".pathmap("%X%{.*,*}x") { |ext|
123 # ext.downcase
138 result << File.basename(self).ext
144 result << self.ext
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-runtime-old.mm222 static NXMapTable *protocol_ext_map = nil; // protocol -> protocol ext
939 if (cls->ext && cls->ext->weak_ivar_layout) {
943 layout_bitmap_create(cls->ext->weak_ivar_layout,
966 cls->ext->weak_ivar_layout = layout_string_create(weakBitmap);
1241 // class structure has ivar_layout and ext fields
1564 old_protocol_ext *ext;
1572 } else if ((ext = ext_for_protocol(proto))) {
1574 m = lookup_method(ext->optional_instance_methods, aSel);
1576 m = lookup_method(ext
[all...]

Completed in 179 milliseconds

1234567891011>>