/external/valgrind/none/tests/amd64/ |
D | fxtract.c | 19 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 …]
|
D | x87trigOOR.c | 114 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/ |
D | fxtract.c | 18 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 …]
|
D | x87trigOOR.c | 114 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/ |
D | cp.c | 129 int (*callback)(struct dirtree *try); 143 int cp_node(struct dirtree *try) in cp_node() argument 145 int fdout = -1, cfd = try->parent ? try->parent->extra : AT_FDCWD, in cp_node() 146 tfd = dirtree_parentfd(try); in cp_node() 148 char *catch = try->parent ? try->name : TT.destname, *err = "%s"; in cp_node() 151 if (!dirtree_notdotdot(try)) return 0; in cp_node() 154 if (S_ISDIR(try->st.st_mode) && try->again) { in cp_node() 155 fdout = try->extra; in cp_node() 160 if (S_ISLNK(try->st.st_mode) && (flags & FLAG_d)) flags |= FLAG_r; in cp_node() 164 if ((TT.top.st_dev == try->st.st_dev && TT.top.st_ino == try->st.st_ino in cp_node() [all …]
|
D | rm.c | 25 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() 53 if (faccessat(fd, try->name, R_OK, 0)) { in do_rm() 54 if (toys.optflags & FLAG_f) wfchmodat(fd, try->name, 0700); in do_rm() 57 if (!try->again) return DIRTREE_COMEAGAIN; in do_rm() [all …]
|
D | chmod.c | 42 static 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);
|
D | ln.c | 49 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/ |
D | tpm-nvsize | 13 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/ |
D | shred.c | 42 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_raw(*try); 67 error_msg("%s: needs -s", *try); 87 perror_msg_raw(*try); 100 if (throw != writeall(fd, toybuf, throw)) perror_msg_raw(*try); 104 if (unlink(*try)) perror_msg("unlink '%s'", *try);
|
/external/clang/test/Parser/ |
D | objc-try-catch-1.m | 16 @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/ |
D | badblocks.c | 351 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/ |
D | finally.m | 4 @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 {
|
D | rewrite-modern-try-catch-finally.m | 12 @try { 17 @try { 18 printf("executing try"); 25 @try { 26 printf("executing try"); 34 @try { 53 @try {
|
/external/llvm/test/CodeGen/X86/ |
D | funclet-layout.ll | 28 catchret from %cp to label %try.cont 30 try.cont: 39 ; The entry funclet contains %entry and %try.cont 41 ; CHECK: # %try.cont 70 catchret from %1 to label %try.cont 72 try.cont: ; preds = %catch.3 73 catchret from %0 to label %try.cont.5 75 try.cont.5: ; preds = %try.cont 84 ; The parent function contains %entry and %try.cont.5 87 ; CHECK: # %try.cont.5 [all …]
|
D | tail-merge-wineh.ll | 5 ; try { 6 ; try { 10 ; try { 64 br label %try.cont 66 try.cont: ; preds = %catchret.dest 72 catch.dispatch.2: ; preds = %try.cont 80 br label %try.cont.6 82 try.cont.6: ; preds = %catchret.dest.5 83 br label %try.cont.11 93 br label %try.cont.11 [all …]
|
D | catchret-empty-fallthrough.ll | 15 br i1 %cond, label %return, label %try 17 try: ; preds = %entry 21 dispatch: ; preds = %try 28 fallthrough: ; preds = %try 37 ; CHECK: je .LBB0_[[try:[0-9]+]] 40 ; CHECK: .LBB0_[[try]]:
|
/external/clang/test/SemaObjCXX/ |
D | delay-parsing-func-tryblock.mm | 26 BadReturn::BadReturn(MyClass * myObject) try : CObj(myObject) { 28 try { category 31 …-error {{cannot refer to a non-static member from the handler of a constructor function try block}} 32 …-error {{cannot refer to a non-static member from the handler of a constructor function try block}} 34 …-error {{cannot refer to a non-static member from the handler of a constructor function try block}} 37 …-error {{cannot refer to a non-static member from the handler of a constructor function try block}} 42 void BadReturn::MemFunc(MyClass * myObject) try { 44 try { category
|
/external/toybox/scripts/ |
D | config2help.c | 229 struct symbol *try; in main() local 232 for (try=sym; try; try=try->next) { in main() 233 len = strlen(try->name); in main() 234 if (!strncmp(try->name, s, len) && s[len]=='=' && s[len+1]=='y') { in main() 235 try->enabled++; in main() 257 char *try, **cdashlines, **tdashlines; in main() local 336 try = 0; in main() 344 try = xmprintf("[-%.*s%.*s] ", ff, from, tt, to); in main() 345 qsort(try+2, ff+tt, 1, (void *)charsort); in main() 356 catch->help_indent, ' ', len, name, try ? try : "", in main() [all …]
|
/external/zlib/src/test/ |
D | infcover.c | 507 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/ |
D | scope-check.m | 9 @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/llvm/test/Transforms/SimplifyCFG/ |
D | empty-cleanuppad.ll | 44 ; outside of a try-block and an object with a non-empty destructor must be 45 ; cleaned up within the try-block. 49 ; try { 80 br label %try.cont 95 br label %try.cont 97 try.cont: ; preds = %catchret.dest, %invoke.cont 107 ; outside of a try-block and an object with an empty destructor must be cleaned 108 ; within the try-block. 112 ; try { 124 ; CHECK: to label %try.cont unwind label %catch.dispatch [all …]
|
/external/ppp/pppd/ |
D | lcp.c | 962 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 …]
|
D | ipcp.c | 1031 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 …]
|
D | ipxcp.c | 776 ipxcp_options try; /* options to request next time */ local 779 try = *go; 797 try.neg_nn = 0; 799 try.our_network = l; 808 try.neg_node = 0; 811 copy_node (p, try.our_node); 831 try.router = 0; 834 try.router |= s; 835 try.neg_router = 1; 854 try.router &= (ao->router | BIT(IPX_NONE)); [all …]
|