Searched refs:as (Results 1 - 25 of 1438) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_markup_attributes.rb8 @as = RDoc::Markup::Attributes.new
12 assert_equal 2, @as.bitmap_for('two')
13 assert_equal 2, @as.bitmap_for('two')
14 assert_equal 4, @as.bitmap_for('three')
18 @as.bitmap_for 'two'
19 @as.bitmap_for 'three'
21 assert_equal 'none', @as.as_string(0)
22 assert_equal '_SPECIAL_', @as.as_string(1)
23 assert_equal 'two', @as.as_string(2)
24 assert_equal '_SPECIAL_,two', @as
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/hash/
H A Dstrhash.c37 strhash(const char* as) argument
39 register const unsigned char* s = (const unsigned char*)as;
H A Dmemhash.c37 memhash(const void* as, int n) argument
39 register const unsigned char* s = (const unsigned char*)as;
H A Dstrsum.c42 strsum(const char* as, register unsigned long c) argument
44 register const unsigned char* s = (const unsigned char*)as;
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_string_sprintf.c52 append_uint(struct archive_string *as, uintmax_t d, unsigned base) argument
56 append_uint(as, d/base, base);
57 archive_strappend_char(as, digits[d % base]);
61 append_int(struct archive_string *as, intmax_t d, unsigned base) argument
64 archive_strappend_char(as, '-');
67 append_uint(as, d, base);
72 __archive_string_sprintf(struct archive_string *as, const char *fmt, ...) argument
77 archive_string_vsprintf(as, fmt, ap);
86 __archive_string_vsprintf(struct archive_string *as, const char *fmt, argument
94 if (__archive_string_ensure(as, 6
[all...]
H A Darchive_string.c51 __archive_string_append(struct archive_string *as, const char *p, size_t s) argument
53 if (__archive_string_ensure(as, as->length + s + 1) == NULL)
55 memcpy(as->s + as->length, p, s);
56 as->s[as->length + s] = 0;
57 as->length += s;
58 return (as);
88 __archive_string_free(struct archive_string *as) argument
100 __archive_string_ensure(struct archive_string *as, size_t s) argument
145 __archive_strncat(struct archive_string *as, const void *_p, size_t n) argument
163 __archive_strappend_char(struct archive_string *as, char c) argument
174 __archive_strappend_w_utf8(struct archive_string *as, const wchar_t *w) argument
288 __archive_string_utf8_w(struct archive_string *as) argument
362 __archive_strappend_w_mbs(struct archive_string *as, const wchar_t *w) argument
401 __archive_strappend_w_mbs(struct archive_string *as, const wchar_t *w) argument
[all...]
H A Darchive_string.h53 * Note that all visible symbols here begin with "__archive" as they
68 /* Append a C char to an archive_string, resizing as necessary. */
86 __archive_string_append(struct archive_string *as, const char *p, size_t s);
100 /* Ensure that the underlying buffer is at least as large as the request. */
108 * Declaring it "char *" as with some of the other functions just
114 /* Append a C string to an archive_string, resizing as necessary. */
115 #define archive_strcat(as,p) __archive_string_append((as),(p),strlen(p))
117 /* Copy a C string to an archive_string, resizing as necessar
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/string/
H A Dfmtesc.c39 * quote string as of length n with qb...qe
48 fmtquote(const char* as, const char* qb, const char* qe, size_t n, int flags) argument
50 register unsigned char* s = (unsigned char*)as;
221 * in length n string as
225 fmtnesq(const char* as, const char* qs, size_t n) argument
227 return fmtquote(as, NiL, qs, n, 0);
235 fmtesq(const char* as, const char* qs) argument
237 return fmtquote(as, NiL, qs, strlen((char*)as), 0);
245 fmtesc(const char* as) argument
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Dauth-bsdauth.c57 if (authctxt->as != NULL) {
59 challenge = auth_getitem(authctxt->as, AUTHV_CHALLENGE);
61 auth_close(authctxt->as);
62 authctxt->as = NULL;
70 authctxt->as = auth_userchallenge(authctxt->user,
72 if (authctxt->as == NULL)
99 if (authctxt->as == 0)
105 authok = auth_userresponse(authctxt->as, responses[0], 0);
106 authctxt->as = NULL;
117 if (authctxt && authctxt->as) {
[all...]
H A Dauth-passwd.c9 * As far as I am concerned, the code I have written for this software
11 * software must be clearly marked as such, and if the derived work is
133 warn_expiry(Authctxt *authctxt, auth_session_t *as) argument
140 pwtimeleft = auth_check_change(as);
141 actimeleft = auth_check_expire(as);
170 auth_session_t *as; local
173 as = auth_usercheck(pw->pw_name, authctxt->style, "auth-ssh",
175 if (as == NULL)
177 if (auth_getstate(as) & AUTH_PWEXPIRED) {
178 auth_close(as);
[all...]
/macosx-10.10/llvmCore-3425.0.34/tools/llvm-as/
H A DMakefile1 ##===- tools/llvm-as/Makefile ------------------------------*- Makefile -*-===##
11 TOOLNAME := llvm-as
/macosx-10.10/vim-55/runtime/macros/urm/
H A Durm.vim4 map g 1G/^[(as;.] i >,mkkmw@k
/macosx-10.10/zsh-61/zsh/Src/
H A Dsort.c24 * provided hereunder is on an "as is" basis, and Paul Falstad and the
45 const char *as = ae->cmp, *bs = be->cmp; local
46 const char *ao = as;
52 * nulls we need to treat as regular characters.
61 const char *laststarta = as;
71 for (cmpa = as, cmpb = bs; *cmpa == *cmpb && len--; cmpa++, cmpb++) {
88 * will just compare the strings as equal.
113 bs += (laststarta - as);
114 as += (laststarta - as);
162 zstrcmp(const char *as, const char *bs, int sortflags) argument
[all...]
/macosx-10.10/dtrace-147/libelf/
H A Dgetarsym.c98 register Elf_Arsym *as = (Elf_Arsym *)oas; local
106 as->as_off = get4(off);
107 as->as_name = str;
108 as->as_hash = elf_hash(str);
109 ++as;
115 as->as_name = 0;
116 as->as_off = 0;
117 as->as_hash = ~(unsigned long)0L;
126 Byte * as; local
140 if ((as
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/widget/
H A Dwidget.tcl5 # megawidget package that uses snit as the object system (snidgets)
40 # propagate option $optDefn ?-default ...? to $components ?as $realopt?
43 foreach {components as what} [lrange $args [expr {$idx + 1}] end] {
62 # Currently not feasible due to snit's compiler-as-slave-interp
65 # tkoption {-opt opt Opt} ?-default ""? from /wclass/ ?as $wopt?
108 # as type to compare as
109 # range range/data info specific to $as
116 proc ::widget::isa {as args} {
118 if {$as e
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/sl/
H A Dslc-gram.y133 check_option(struct assignment *as)
145 for(a = as; a != NULL; a = a->next) {
166 ex(as, "neither long nor short option");
170 ex(as, "either of long or name option must be used");
174 ex(as, "multiple long options");
178 ex(as, "multiple short options");
182 ex(as, "multiple types");
186 ex(as, "multiple arguments");
190 ex(as, "multiple help strings");
194 ex(as, "multipl
[all...]
/macosx-10.10/uucp-11/uucp/uuconf/
H A Ddiacod.c10 as published by the Free Software Foundation; either version 2 of
47 struct uuconf_cmdtab as[2];
51 as[0].uuconf_zcmd = zdial;
52 as[0].uuconf_itype = UUCONF_CMDTABTYPE_FN | 0;
53 as[0].uuconf_pvar = (pointer) pznum;
54 as[0].uuconf_pifn = idcode;
56 as[1].uuconf_zcmd = NULL;
76 iret = uuconf_cmd_file (pglobal, e, as, (pointer) NULL,
45 struct uuconf_cmdtab as[2]; local
H A Dtdnams.c10 as published by the Free Software Foundation; either version 2 of
47 struct uuconf_cmdtab as[2];
53 as[0].uuconf_zcmd = "dialer";
54 as[0].uuconf_itype = UUCONF_CMDTABTYPE_FN | 2;
55 as[0].uuconf_pvar = (pointer) ppzdialers;
56 as[0].uuconf_pifn = indialer;
58 as[1].uuconf_zcmd = NULL;
76 iret = uuconf_cmd_file (pglobal, e, as, (pointer) NULL,
45 struct uuconf_cmdtab as[2]; local
/macosx-10.10/libunwind-35.3/src/
H A Dlibuwind.cxx8 * as defined in and that are subject to the Apple Public Source License
84 EXPORT int unw_init_remote_thread(unw_cursor_t* cursor, unw_addr_space_t as, thread_t thread) argument
87 if ( as == (unw_addr_space_t)&sThisAddressSpace )
91 switch ( as->cpuType ) {
94 Registers_x86>(((unw_addr_space_i386*)as)->oas, thread);
98 Registers_x86_64>(((unw_addr_space_x86_64*)as)->oas, thread);
102 Registers_ppc>(((unw_addr_space_ppc*)as)->oas, thread);
127 unw_addr_space_ppc* as = new unw_addr_space_ppc(task); local
128 as->taskPort = task;
129 as
133 unw_addr_space_x86_64* as = new unw_addr_space_x86_64(task); local
139 unw_addr_space_i386* as = new unw_addr_space_i386(task); local
159 unw_addr_space_i386* as = (unw_addr_space_i386*)asp; local
165 unw_addr_space_x86_64* as = (unw_addr_space_x86_64*)asp; local
172 unw_addr_space_ppc* as = (unw_addr_space_ppc*)asp; local
[all...]
/macosx-10.10/sudo-73/src/auth/
H A Dbsdauth.c61 auth_session_t *as; member in struct:bsdauth_state
83 if ((state.as = auth_open()) == NULL) {
94 auth_close(state.as);
99 if (auth_setitem(state.as, AUTHV_STYLE, login_style) < 0 ||
100 auth_setitem(state.as, AUTHV_NAME, pw->pw_name) < 0 ||
101 auth_setitem(state.as, AUTHV_CLASS, login_class) < 0) {
103 auth_close(state.as);
123 auth_session_t *as = ((struct bsdauth_state *) auth->data)->as; local
137 if ((s = auth_challenge(as))
[all...]
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/tcl/tequila/
H A Dtequical.tcl17 toplevel .as
18 wm title .as "Site setup"
19 pack [label .as.l -text "Where is the Tequila server?"] \
20 [entry .as.e -width 30 -textvariable as_host] \
21 [button .as.b -text "OK" -command {set as_status 1}] -padx 4 -pady 4
22 bind .as <Return> {.as.b invoke}
23 bind .as <Escape> {exit}
24 wm protocol .as WM_DELETE_WINDOW {exit}
26 raise .as
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/grammar_me/
H A Dme_tcl.tcl5 ## Implementation of the ME virtual machine as a singleton, tied to
68 variable as {}
115 variable as
116 return [lindex $as end]
120 variable as
121 return $as
265 # Go forward, as the nonterminal matches (or not).
369 # If one of the errors is further on in the input choose that as
397 variable as
400 lappend as
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/style/
H A DpkgIndex.tcl12 package ifneeded style::as 1.4 [list source [file join $dir as.tcl]]
H A Dstyle.tcl10 variable available [list lobster as]
/macosx-10.10/ruby-106/ruby/ext/bigdecimal/sample/
H A Dlinear.rb34 as= []
43 as << BigDecimal::new(s);
56 as << BigDecimal::new(s[j]);
67 s = s + as[i*n+j]*x[j]

Completed in 414 milliseconds

1234567891011>>