Home
last modified time | relevance | path

Searched refs:try (Results 1 – 25 of 1242) sorted by relevance

12345678910>>...50

/external/valgrind/none/tests/amd64/
Dfxtract.c19 void try ( double x ) in try() function
34 try( 1.27 + (double)(i*10 - 200) ); in main()
36 try(+0.0); in main()
37 try(1.0 / 0.0); in main()
38 try(sqrt(-1.0)); in main()
40 try(5.1e-308); in main()
41 try(4.1e-308); in main()
42 try(3.1e-308); in main()
43 try(2.1e-308); in main()
44 try(1.1e-308); in main()
[all …]
Dx87trigOOR.c114 void try ( char* name, void(*fn)(Res*,double), double d ) in try() function
136 try( name, fn, 0.0 ); in main()
137 try( name, fn, 0.123 ); in main()
138 try( name, fn, -0.456 ); in main()
139 try( name, fn, 37.0 ); in main()
140 try( name, fn, -53.0 ); in main()
143 try( name, fn, limit * 0.900000 ); in main()
144 try( name, fn, limit * 0.999999 ); in main()
145 try( name, fn, limit * 1.000000 ); in main()
146 try( name, fn, limit * 1.000001 ); in main()
[all …]
/external/valgrind/none/tests/x86/
Dfxtract.c18 void try ( double x ) in try() function
33 try( 1.27 + (double)(i*10 - 200) ); in main()
35 try(+0.0); in main()
36 try(1.0 / 0.0); in main()
37 try(sqrt(-1.0)); in main()
39 try(5.1e-308); in main()
40 try(4.1e-308); in main()
41 try(3.1e-308); in main()
42 try(2.1e-308); in main()
43 try(1.1e-308); in main()
[all …]
Dx87trigOOR.c114 void try ( char* name, void(*fn)(Res*,double), double d ) in try() function
136 try( name, fn, 0.0 ); in main()
137 try( name, fn, 0.123 ); in main()
138 try( name, fn, -0.456 ); in main()
139 try( name, fn, 37.0 ); in main()
140 try( name, fn, -53.0 ); in main()
143 try( name, fn, limit * 0.900000 ); in main()
144 try( name, fn, limit * 0.999999 ); in main()
145 try( name, fn, limit * 1.000000 ); in main()
146 try( name, fn, limit * 1.000001 ); in main()
[all …]
/external/toybox/toys/posix/
Dcp.c97 int (*callback)(struct dirtree *try);
104 int cp_node(struct dirtree *try)
106 int fdout = -1, cfd = try->parent ? try->parent->extra : AT_FDCWD,
107 tfd = dirtree_parentfd(try);
109 char *catch = try->parent ? try->name : TT.destname, *err = "%s";
112 if (!dirtree_notdotdot(try)) return 0;
115 if (S_ISDIR(try->st.st_mode) && try->again) {
116 fdout = try->extra;
121 if (S_ISLNK(try->st.st_mode) && (flags & FLAG_d)) flags |= FLAG_r;
125 if ((TT.top.st_dev == try->st.st_dev && TT.top.st_ino == try->st.st_ino
[all …]
Drm.c25 static int do_rm(struct dirtree *try) in do_rm() argument
27 int fd = dirtree_parentfd(try), flags = toys.optflags; in do_rm()
28 int dir = S_ISDIR(try->st.st_mode), or = 0, using = 0; in do_rm()
31 if (!dirtree_notdotdot(try)) return 0; in do_rm()
39 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++; in do_rm()
40 if (!(dir && try->again) && ((or && isatty(0)) || (flags & FLAG_i))) { in do_rm()
41 char *s = dirtree_path(try, 0); in do_rm()
52 if (faccessat(fd, try->name, R_OK, 0)) { in do_rm()
53 if (toys.optflags & FLAG_f) wfchmodat(fd, try->name, 0700); in do_rm()
56 if (!try->again) return DIRTREE_COMEAGAIN; in do_rm()
[all …]
Dchmod.c42 int do_chmod(struct dirtree *try)
46 if (!dirtree_notdotdot(try)) return 0;
48 mode = string_to_mode(TT.mode, try->st.st_mode);
50 char *s = dirtree_path(try, 0);
54 wfchmodat(dirtree_parentfd(try), try->name, mode);
Dln.c49 char *oldnew, *try = toys.optargs[i]; in ln_main() local
51 if (S_ISDIR(buf.st_mode)) new = xmprintf("%s/%s", dest, basename(try)); in ln_main()
67 rc = (toys.optflags & FLAG_s) ? symlink(try, new) : link(try, new); in ln_main()
82 (toys.optflags & FLAG_s) ? "symbolic" : "hard", try, new); in ln_main()
84 if (toys.optflags & FLAG_v) fprintf(stderr, "'%s' -> '%s'\n", new, try); in ln_main()
/external/vboot_reference/utility/
Dtpm-nvsize13 try=$high
18 if /usr/bin/tpmc definespace 0xf004 $(printf "0x%x" $try) 0x1 \
21 if [ $try -eq $low ]; then
24 elif [ $try -lt $high ]; then
25 low=$try
26 try=$(( ( $high + $low ) / 2 ))
29 low=$try
30 try=$(( $try * 2 ))
31 high=$try
39 echo please correct this condition and try again
[all …]
/external/toybox/toys/other/
Dshred.c42 char **try; local
50 for (try = toys.optargs; *try; try++) {
52 int fd = open(*try, O_RDWR), iter = 0, throw;
56 chmod(*try, 0600);
57 fd = open(*try, O_RDWR);
60 perror_msg("%s", *try);
67 error_msg("%s: needs -s", *try);
87 perror_msg("%s", *try);
104 if (unlink(*try)) perror_msg("unlink '%s'", *try);
/external/clang/test/Parser/
Dobjc-try-catch-1.m16 @try {
26 @try {
42 @try { // expected-error {{@try statement without a @catch and @finally clause}}
50 @try {}// expected-error {{@try statement without a @catch and @finally clause}}
56 @try {}// expected-error {{@try statement without a @catch and @finally clause}}
57 @try {}
62 @try {
65 @try {
/external/e2fsprogs/misc/
Dbadblocks.c351 static int do_read (int dev, unsigned char * buffer, int try, int block_size, in do_read() argument
360 printf("do_read: block %d, try %d\n", current_block, try); in do_read()
362 set_o_direct(dev, buffer, try * block_size, in do_read()
376 got = read (dev, buffer, try * block_size); in do_read()
384 if (d_flag && got == try) { in do_read()
427 static int do_write(int dev, unsigned char * buffer, int try, int block_size, in do_write() argument
433 printf("do_write: block %lu, try %d\n", current_block, try); in do_write()
435 set_o_direct(dev, buffer, try * block_size, in do_write()
447 got = write (dev, buffer, try * block_size); in do_write()
477 int try; in test_ro() local
[all …]
/external/clang/test/Rewriter/
Dfinally.m4 @try {
5 …printf("executing try"); // expected-warning{{implicitly declaring library function 'printf' with …
7 …rning{{rewriter doesn't support user-specified control flow semantics for @try/@finally (code may …
12 @try {
13 printf("executing try");
20 @try {
21 printf("executing try");
36 @try {
Drewrite-modern-try-catch-finally.m12 @try {
17 @try {
18 printf("executing try");
25 @try {
26 printf("executing try");
34 @try {
53 @try {
/external/linux-tools-perf/src/tools/perf/config/
DMakefile92 ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -Werror -fstack-protector-all,-fstack-protector-all),…
96 ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -Werror -Wstack-protector,-Wstack-protector),y)
100 ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -Werror -Wvolatile-register-var,-Wvolatile-register-v…
105 ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -D_FORTIFY_SOURCE=2,-D_FORTIFY_SOURCE=2),y)
131 ifeq ($(call try-cc,$(SOURCE_BIONIC),$(CFLAGS),bionic),y)
144 ifneq ($(call try-cc,$(SOURCE_LIBELF),$(FLAGS_LIBELF),libelf),y)
146 ifeq ($(call try-cc,$(SOURCE_GLIBC),$(FLAGS_GLIBC),glibc),y)
170 ifneq ($(call try-cc,$(SOURCE_DWARF),$(FLAGS_DWARF),libdw),y)
180 ifeq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_LIBELF),-DLIBELF_MMAP),y)
183 ifeq ($(call try-cc,$(SOURCE_ELF_GETPHDRNUM),$(FLAGS_LIBELF),-DHAVE_ELF_GETPHDRNUM),y)
[all …]
/external/toybox/scripts/
Dconfig2help.c212 struct symbol *try; in main() local
215 for (try=sym; try; try=try->next) { in main()
216 len = strlen(try->name); in main()
217 if (!strncmp(try->name, s, len) && s[len]=='=' && s[len+1]=='y') { in main()
218 try->enabled++; in main()
240 char *try, **cdashlines, **tdashlines; in main() local
319 try = 0; in main()
327 try = xmprintf("[-%.*s%.*s] ", ff, from, tt, to); in main()
328 qsort(try+2, ff+tt, 1, (void *)charsort); in main()
339 catch->help_indent, ' ', len, name, try ? try : "", in main()
[all …]
/external/libvncserver/x11vnc/misc/
Dx11vnc_loop65 try=1
68 echo "`date` $0 try number: $try"; try=`expr $try + 1`
84 if [ $try -gt $max ]; then
/external/zlib/src/test/
Dinfcover.c507 local int try(char *hex, char *id, int err) in try() function
583 try("0 0 0 0 0", "invalid stored block lengths", 1); in cover_inflate()
584 try("3 0", "fixed", 0); in cover_inflate()
585 try("6", "invalid block type", 1); in cover_inflate()
586 try("1 1 0 fe ff 0", "stored", 0); in cover_inflate()
587 try("fc 0 0", "too many length or distance symbols", 1); in cover_inflate()
588 try("4 0 fe ff", "invalid code lengths set", 1); in cover_inflate()
589 try("4 0 24 49 0", "invalid bit length repeat", 1); in cover_inflate()
590 try("4 0 24 e9 ff ff", "invalid bit length repeat", 1); in cover_inflate()
591 try("4 0 24 e9 ff 6d", "invalid code -- missing end-of-block", 1); in cover_inflate()
[all …]
/external/clang/test/SemaObjC/
Dscope-check.m9 @try { // expected-note {{jump bypasses initialization of @try block}}
19 @try {
32 @try { // expected-note 2 {{jump bypasses initialization of @try block}}
41 @try {
61 @try {} @finally {}
68 @try {
81 @try {
/external/marisa-trie/
Dandroid_diff.txt75 - try {
92 - try {
111 - Vector<UInt32> *terminals, Progress &progress) try {
135 - marisa_uint32 *key_ids, int flags) try {
148 - long offset, int whence) try {
159 -marisa_status marisa_map(marisa_trie *h, const void *ptr, size_t size) try {
172 - long offset, int whence) try {
184 -marisa_status marisa_fread(marisa_trie *h, FILE *file) try {
196 -marisa_status marisa_read(marisa_trie *h, int fd) try {
209 - int trunc_flag, long offset, int whence) try {
[all …]
/external/llvm/test/Analysis/Lint/
Dcppeh-catch-intrinsics.ll21 to label %try.cont unwind label %lpad
38 br label %try.cont
40 try.cont: ; preds = %invoke.cont2, %entry
53 to label %try.cont unwind label %lpad
70 br label %try.cont
72 try.cont: ; preds = %invoke.cont2, %entry
86 to label %try.cont unwind label %lpad
105 br label %try.cont
107 try.cont: ; preds = %invoke.cont2, %entry
121 to label %try.cont unwind label %lpad
[all …]
/external/v8/test/webkit/
Deval-throw-return-expected.txt30 PASS eval("1; try { foo = [2,3,throwFunc(), 4]; } catch (e){}") is 1
31 PASS eval("1; try { 2; throw \"\"; } catch (e){}") is 2
32 PASS eval("1; try { 2; throwFunc(); } catch (e){}") is 2
33 PASS eval("1; try { 2; throwFunc(); } catch (e){3;} finally {}") is 3
34 PASS eval("1; try { 2; throwFunc(); } catch (e){3;} finally {4;}") is 4
39 PASS eval("try{1; if (true) { 2; throw \"\"; } else { 2; }} catch(e){}") is 2
41 PASS eval("try{1; var i = 0; do { ++i; 2; throw \"\"; } while(i!=1);} catch(e){}") is 2
42 PASS eval("1; try{2; throwOnReturn();} catch(e){}") is 2
/external/llvm/test/CodeGen/WinEH/
Dcppeh-nested-3.ll7 ; try {
8 ; try {
11 ; try {
60 br label %try.cont10
67 ; CHECK: indirectbr i8* [[RECOVER]], [label %try.cont10, label %try.cont19]
96 br label %try.cont
124 br label %try.cont
126 ; CHECK-NOT: try.cont:
127 try.cont: ; preds = %catch6, %invoke.cont2
133 invoke.cont9: ; preds = %try.cont
[all …]
/external/ppp/pppd/
Dlcp.c962 lcp_options try; /* options to request next time */ local
967 try = *go;
982 try.neg = 0; \
1050 try.neg = 0; \
1067 try.mru = cishort;
1076 try.asyncmap = go->asyncmap | cilong;
1098 try.neg_eap = 0;
1102 try.neg_chap = 0;
1114 try.neg_eap = 0;
1117 try.chap_mdtype = CHAP_MDTYPE_D(cichar);
[all …]
Dipcp.c1031 ipcp_options try; /* options to request next time */ local
1034 try = *go;
1100 try.old_addrs = 0;
1104 try.ouraddr = ciaddr1;
1108 try.hisaddr = ciaddr2;
1121 try.neg_vj = 0;
1126 try.old_vj = 0;
1128 try.maxslotindex = cimaxslotindex;
1130 try.cflag = 0;
1132 try.neg_vj = 0;
[all …]

12345678910>>...50