Searched refs:work (Results 1 - 25 of 645) sorted by relevance

1234567891011>>

/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-sh/
H A Dtp_test.sh38 mkdir work
39 atf_check -s eq:0 -o empty -e empty cp "$(atf_get_srcdir)/misc_helpers" work
40 cat >work/subrs <<EOF
47 -o match:'This is a helper subroutine' -e empty ./work/misc_helpers \
48 -s "$(pwd)"/work tp_srcdir
/macosx-10.9.5/bc-21/bc/Examples/
H A Dpi.b12 auto ix, pi, save_scale, work;
19 work = pi;
26 one_digit = work / 1;
32 work = (work - one_digit) / 1 * 10;
36 one_digit = work / 1;
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dcplus-dem.c61 #define CURRENT_DEMANGLING_STYLE work->options
144 #define PRINT_ANSI_QUALIFIERS (work -> options & DMGL_ANSI)
145 #define PRINT_ARG_TYPES (work -> options & DMGL_PARAMS)
322 #define SCOPE_STRING(work) ((work->options & DMGL_JAVA) ? "." : "::")
348 demangle_template_template_parm (struct work_stuff *work,
352 demangle_template (struct work_stuff *work, const char **, string *,
640 struct work_stuff work[1]; local
646 memset ((char *) work, 0, sizeof (work));
849 struct work_stuff work[1]; local
1011 internal_cplus_demangle(struct work_stuff *work, const char *mangled) argument
1076 squangle_mop_up(struct work_stuff *work) argument
1160 delete_non_B_K_work_stuff(struct work_stuff *work) argument
1193 delete_work_stuff(struct work_stuff *work) argument
1203 mop_up(struct work_stuff *work, string *declp, int success) argument
1255 demangle_signature(struct work_stuff *work, const char **mangled, string *declp) argument
1567 demangle_template_template_parm(struct work_stuff *work, const char **mangled, string *tname) argument
1629 demangle_expression(struct work_stuff *work, const char **mangled, string *s, type_kind_t tk) argument
1686 demangle_integral_value(struct work_stuff *work, const char **mangled, string *s) argument
1782 demangle_real_value(struct work_stuff *work, const char **mangled, string *s) argument
1823 demangle_template_value_parm(struct work_stuff *work, const char **mangled, string *s, type_kind_t tk) argument
1932 demangle_template(struct work_stuff *work, const char **mangled, string *tname, string *trawname, int is_type, int remember) argument
2143 arm_pt(struct work_stuff *work, const char *mangled, int n, const char **anchor, const char **args) argument
2197 demangle_arm_hp_template(struct work_stuff *work, const char **mangled, int n, string *declp) argument
2375 demangle_class_name(struct work_stuff *work, const char **mangled, string *declp) argument
2429 demangle_class(struct work_stuff *work, const char **mangled, string *declp) argument
2481 iterate_demangle_function(struct work_stuff *work, const char **mangled, string *declp, const char *scan) argument
2581 demangle_prefix(struct work_stuff *work, const char **mangled, string *declp) argument
2790 gnu_special(struct work_stuff *work, const char **mangled, string *declp) argument
2991 recursively_demangle(struct work_stuff *work, const char **mangled, string *result, int namelength) argument
3123 demangle_qualified(struct work_stuff *work, const char **mangled, string *result, int isfuncname, int append) argument
3382 do_type(struct work_stuff *work, const char **mangled, string *result) argument
3691 demangle_fund_type(struct work_stuff *work, const char **mangled, string *result) argument
3946 do_hpacc_template_literal(struct work_stuff *work, const char **mangled, string *result) argument
4019 do_arg(struct work_stuff *work, const char **mangled, string *result) argument
4082 remember_type(struct work_stuff *work, const char *start, int len) argument
4112 remember_Ktype(struct work_stuff *work, const char *start, int len) argument
4141 register_Btype(struct work_stuff *work) argument
4167 remember_Btype(struct work_stuff *work, const char *start, int len, int index) argument
4180 forget_B_and_K_types(struct work_stuff *work) argument
4207 forget_types(struct work_stuff *work) argument
4265 demangle_args(struct work_stuff *work, const char **mangled, string *declp) argument
4388 demangle_nested_args(struct work_stuff *work, const char **mangled, string *declp) argument
4425 demangle_function_name(struct work_stuff *work, const char **mangled, string *declp, const char *scan) argument
[all...]
H A Dsort.c47 void sort_pointers (size_t n, void **pointers, void **work) argument
123 work[--count[((digit_t *) pointerp)[j]]] = *pointerp;
128 pointers = work;
129 work = pointerp;
151 void **work; local
159 work = XNEWVEC (void*, k);
167 sort_pointers (k, pointers, work);
181 free (work);
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/tlv-initializer/
H A Dmain.c39 static void* work(void* arg) function
56 if ( pthread_create(&worker1, NULL, work, NULL) != 0 ) {
62 if ( pthread_create(&worker2, NULL, work, NULL) != 0 ) {
73 work(NULL);
/macosx-10.9.5/CPANInternal-140/TermReadKey/
H A DReadKey.xs95 printed. This is an attempt to work around a Solaris bug where
166 won't work properly */
774 struct tbuffer work;
785 if (!GetConsoleMode((HANDLE)_get_osfhandle(handle), &work.Mode))
793 tcgetattr(handle,&work);
801 ioctl(handle,TCGETA,&work);
808 ioctl(handle,TIOCGETP,&work.buf);
810 ioctl(handle,TIOCGETC,&work.tchar);
813 ioctl(handle,TIOCLGET,&work.local);
816 ioctl(handle,TIOCGLTC,&work
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DckDES.c242 * This is easier to work with
492 unsigned long work[2]; /* Working data storage */ local
495 permute(block,iperm,(char *)work); /* Initial Permutation */
497 work[0] = byteswap(work[0]);
498 work[1] = byteswap(work[1]);
503 round(dinst,i,work);
506 tmp = work[0];
507 work[
519 unsigned long work[2]; /* Working data storage */ local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DckDES.c242 * This is easier to work with
492 unsigned long work[2]; /* Working data storage */ local
495 permute(block,iperm,(char *)work); /* Initial Permutation */
497 work[0] = byteswap(work[0]);
498 work[1] = byteswap(work[1]);
503 round(dinst,i,work);
506 tmp = work[0];
507 work[
519 unsigned long work[2]; /* Working data storage */ local
[all...]
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_write_set_format_shar.c58 struct archive_string work; member in struct:shar
119 archive_string_init(&shar->work);
166 archive_strcat(&shar->work, "#!/bin/sh\n");
167 archive_strcat(&shar->work, "# This is a shell archive\n");
208 archive_string_sprintf(&shar->work, "echo x %s\n", shar->quoted_name.s);
223 archive_strcat(&shar->work, "mkdir -p ");
224 shar_quote(&shar->work, p, 1);
225 archive_strcat(&shar->work,
236 archive_strcat(&shar->work, "mkdir -p ");
237 shar_quote(&shar->work,
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/
H A Dtext.rb14 work = text.dup
16 while work.length > wrap do
17 if work =~ /^(.{0,#{wrap}})[ \n]/ then
19 work.slice!(0, $&.length)
21 result << work.slice!(0, wrap)
25 result << work if work.length.nonzero?
/macosx-10.9.5/cctools-845/as/
H A Dflonum-mult.c87 uint32_t work;
126 work = carry;
136 printf("a:low[%d.]=%04x b:low[%d.]=%04x work_before=%08x\n", A, a->low[A], B, b->low[B], work);
138 work += a -> low [A] * b -> low [B];
139 carry += work >> LITTLENUM_NUMBER_OF_BITS;
140 work &= LITTLENUM_MASK;
142 printf("work=%08x carry=%04x\n", work, carry);
146 significant |= work;
151 product -> low [P] = work;
86 uint32_t work; local
[all...]
/macosx-10.9.5/ntp-88/libntp/
H A Ddolfptoa.c2 * dolfptoa - do the grunge work of converting an l_fp number to decimal
100 l_fp work; local
102 work.l_ui = 0;
103 work.l_uf = fpv;
114 work.l_ui = 0;
115 L_LSHIFT(&work);
116 ftmp = work;
117 L_LSHIFT(&work);
118 L_LSHIFT(&work);
119 L_ADD(&work,
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlerror/
H A Dmain.c36 static void* work(void* arg) function
66 if ( pthread_create(&worker1, NULL, work, "/frazzle/bar") != 0 ) {
72 if ( pthread_create(&worker2, NULL, work, "/frazzle/foo") != 0 ) {
78 if ( pthread_create(&worker3, NULL, work, "/frazzle/dazzle") != 0 ) {
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-leak-threaded/
H A Dmain.c39 static void* work(void* arg) function
50 if ( pthread_create(&worker1, NULL, work, "/frazzle/bar") != 0 ) {
56 if ( pthread_create(&worker2, NULL, work, "/frazzle/foo") != 0 ) {
62 if ( pthread_create(&worker3, NULL, work, "/frazzle/dazzle") != 0 ) {
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/tlv-basic/
H A Dmain.c36 static void* work(void* arg) function
61 if ( pthread_create(&worker1, NULL, work, NULL) != 0 ) {
67 if ( pthread_create(&worker2, NULL, work, NULL) != 0 ) {
78 work(NULL);
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/tlv-dylib/
H A Dmain.c36 static void* work(void* arg) function
61 if ( pthread_create(&worker1, NULL, work, NULL) != 0 ) {
67 if ( pthread_create(&worker2, NULL, work, NULL) != 0 ) {
78 work(NULL);
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-dyld-locking/
H A Dmain.c40 static void* work(void* arg) function
52 if ( pthread_create(&otherThread, NULL, work, NULL) != 0 ) {
/macosx-10.9.5/ncurses-42/ncurses/test/
H A Dinserts.c148 WINDOW *work = 0; local
173 work = newwin(limit - 2, COLS - (2 * level), 1, level);
179 work = stdscr;
182 keypad(work, TRUE);
185 mvwvline(work, row, col, '.', limit - 2);
187 mvwvline(work, row, margin, ACS_VLINE, limit - 2);
188 mvwvline(work, row, margin + 1, ACS_VLINE, limit - 2);
191 mvwaddstr(work, 1, 2, "String");
192 mvwaddstr(work, limit + 1, 2, "Chars");
193 wnoutrefresh(work);
[all...]
H A Dins_wide.c226 WINDOW *work = 0; local
247 work = newwin(limit - 2, COLS - (2 * level), 1, level);
253 work = stdscr;
256 keypad(work, TRUE);
259 mvwvline(work, row, col, '.', limit - 2);
261 mvwvline(work, row, margin, ACS_VLINE, limit - 2);
262 mvwvline(work, row, margin + 1, ACS_VLINE, limit - 2);
265 mvwaddstr(work, 1, 2, "String");
266 mvwaddstr(work, limit + 1, 2, "Chars");
267 wnoutrefresh(work);
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/concurrent-dlopen-initializers/
H A Dmain.c35 static void* work(void* libName) function
63 if ( pthread_create(&t1, NULL, work, "libfoo1.dylib") != 0 ) {
69 if ( pthread_create(&t2, NULL, work, "libfoo2.dylib") != 0 ) {
75 if ( pthread_create(&t3, NULL, work, "libfoo3.dylib") != 0 ) {
81 if ( pthread_create(&t4, NULL, work, "libfoo4.dylib") != 0 ) {
/macosx-10.9.5/vim-53/runtime/keymap/
H A Ddvorak.vim5 " should work.
/macosx-10.9.5/dtrace-118.1/libelf/
H A Dnewdata.c43 unsigned work; local
71 ELFACCESSDATA(work, _elf_work)
78 s->s_dnode.db_data.d_version = work;
88 d->db_data.d_version = work;
/macosx-10.9.5/rsync-42/rsync/zlib/
H A Dinftrees.h55 unsigned FAR *bits, unsigned short FAR *work));
/macosx-10.9.5/ruby-104/ruby/lib/minitest/
H A Dbenchmark.rb73 # Runs the given +work+, gathering the times of each run. Range
90 def assert_performance validation, &work
100 instance_exec(x, &work)
112 # Runs the given +work+ and asserts that the times gathered fit to
134 def assert_performance_constant threshold = 0.99, &work
141 assert_performance validation, &work
145 # Runs the given +work+ and asserts that the times gathered fit to
160 def assert_performance_exponential threshold = 0.99, &work
161 assert_performance validation_for_fit(:exponential, threshold), &work
165 # Runs the given +work
[all...]
/macosx-10.9.5/sudo-72/src/zlib/
H A Dinftrees.h62 unsigned FAR *bits, unsigned short FAR *work));

Completed in 268 milliseconds

1234567891011>>