Searched refs:try (Results 1 - 25 of 216) sorted by relevance

123456789

/external/valgrind/none/tests/amd64/
H A Dfxtract.c19 void try ( double x ) function
34 try( 1.27 + (double)(i*10 - 200) );
36 try(+0.0);
37 try(1.0 / 0.0);
38 try(sqrt(-1.0));
40 try(5.1e-308);
41 try(4.1e-308);
42 try(3.1e-308);
43 try(2.1e-308);
44 try(1.
[all...]
H A Dx87trigOOR.c114 void try ( char* name, void(*fn)(Res*,double), double d ) function
136 try( name, fn, 0.0 );
137 try( name, fn, 0.123 );
138 try( name, fn, -0.456 );
139 try( name, fn, 37.0 );
140 try( name, fn, -53.0 );
143 try( name, fn, limit * 0.900000 );
144 try( name, fn, limit * 0.999999 );
145 try( name, fn, limit * 1.000000 );
146 try( nam
[all...]
/external/valgrind/none/tests/x86/
H A Dfxtract.c18 void try ( double x ) function
33 try( 1.27 + (double)(i*10 - 200) );
35 try(+0.0);
36 try(1.0 / 0.0);
37 try(sqrt(-1.0));
39 try(5.1e-308);
40 try(4.1e-308);
41 try(3.1e-308);
42 try(2.1e-308);
43 try(1.
[all...]
H A Dx87trigOOR.c114 void try ( char* name, void(*fn)(Res*,double), double d ) function
136 try( name, fn, 0.0 );
137 try( name, fn, 0.123 );
138 try( name, fn, -0.456 );
139 try( name, fn, 37.0 );
140 try( name, fn, -53.0 );
143 try( name, fn, limit * 0.900000 );
144 try( name, fn, limit * 0.999999 );
145 try( name, fn, limit * 1.000000 );
146 try( nam
[all...]
/external/vboot_reference/utility/
H A Dtpm-nvsize13 try=$high
17 ## echo trying $try [ $low $high ]
18 if /usr/bin/tpmc definespace 0xf004 $(printf "0x%x" $try) 0x1 \
20 # definespace success: end, or $try must grow
21 if [ $try -eq $low ]; then
24 elif [ $try -lt $high ]; then
25 low=$try
26 try=$(( ( $high + $low ) / 2 ))
28 # special case: when try == high, expand the search
29 low=$try
[all...]
/external/clang/test/Parser/
H A Dcxx-in-c.c5 void f1(int x) try {}; // expected-error{{expected function body after function declarator}}
/external/lzma/CPP/Common/
H A DComTry.h10 #define COM_TRY_BEGIN try {
/external/toybox/toys/posix/
H A Drm.c25 static int do_rm(struct dirtree *try) argument
27 int fd = dirtree_parentfd(try), flags = toys.optflags;
28 int dir = S_ISDIR(try->st.st_mode), or = 0, using = 0;
31 if (!dirtree_notdotdot(try)) return 0;
39 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++;
40 if (!(dir && try->again) && ((or && isatty(0)) || (flags & FLAG_i))) {
41 char *s = dirtree_path(try, 0);
52 if (faccessat(fd, try->name, R_OK, 0)) {
53 if (toys.optflags & FLAG_f) wfchmodat(fd, try
[all...]
H A Dchmod.c42 int do_chmod(struct dirtree *try) argument
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);
H A Dcp.c97 int (*callback)(struct dirtree *try);
104 int cp_node(struct dirtree *try) argument
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
361 install_node(struct dirtree *try) argument
[all...]
H A Dln.c49 char *oldnew, *try = toys.optargs[i]; local
51 if (S_ISDIR(buf.st_mode)) new = xmprintf("%s/%s", dest, basename(try));
67 rc = (toys.optflags & FLAG_s) ? symlink(try, new) : link(try, new);
82 (toys.optflags & FLAG_s) ? "symbolic" : "hard", try, new);
84 if (toys.optflags & FLAG_v) fprintf(stderr, "'%s' -> '%s'\n", new, try);
/external/toybox/toys/other/
H A 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);
[all...]
H A Dchcon.c24 int do_chcon(struct dirtree *try) argument
28 if (!dirtree_notdotdot(try)) return 0;
30 path = dirtree_path(try, 0);
/external/selinux/policycoreutils/sandbox/
H A Dstart4 try:
/external/libvncserver/x11vnc/misc/
H A Dx11vnc_loop65 try=1
68 echo "`date` $0 try number: $try"; try=`expr $try + 1`
84 if [ $try -gt $max ]; then
/external/clang/test/PCH/
H A Dobjc_stmts.h15 @try {
/external/e2fsprogs/misc/
H A Dbadblocks.c351 static int do_read (int dev, unsigned char * buffer, int try, int block_size, argument
360 printf("do_read: block %d, try %d\n", current_block, try);
362 set_o_direct(dev, buffer, try * block_size,
376 got = read (dev, buffer, try * block_size);
384 if (d_flag && got == try) {
427 static int do_write(int dev, unsigned char * buffer, int try, int block_size, argument
433 printf("do_write: block %lu, try %d\n", current_block, try);
435 set_o_direct(dev, buffer, try * block_siz
477 int try; local
592 int i, try, got, nr_pattern, pat_idx; local
731 int try, i; local
[all...]
/external/chromium-trace/trace-viewer/hooks/
H A Dpre_push12 try:
34 try:
/external/clang/test/Coverage/
H A Dobjc-language-features.inc66 @try {
/external/proguard/examples/dictionaries/
H A Dkeywords.txt16 try
/external/marisa-trie/tests/
H A Dassert.h10 #define EXCEPT(code, expected_status) try { \
/external/marisa-trie/v0_1_5/tests/
H A Dassert.h10 #define EXCEPT(code, expected_status) try { \
/external/toybox/scripts/
H A Dconfig2help.c212 struct symbol *try; local
215 for (try=sym; try; try=try->next) {
216 len = strlen(try->name);
217 if (!strncmp(try->name, s, len) && s[len]=='=' && s[len+1]=='y') {
218 try->enabled++;
240 char *try, **cdashlines, **tdashlines; local
319 try
[all...]
/external/llvm/test/Bindings/OCaml/
H A Dbitreader.ml28 begin try
38 test begin try
49 let m = begin try
67 try
69 let m = begin try
/external/mesa3d/
H A DSConstruct47 try:
64 try:
151 try:

Completed in 818 milliseconds

123456789