HomeSort by relevance Sort by last modified time
    Searched defs:ret (Results 201 - 225 of 5747) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/compiler-rt/test/builtins/Unit/
gttf2_test.c 25 int ret = compareResultCMP(x, expected); local
27 if (ret){
31 return ret;
letf2_test.c 25 int ret = compareResultCMP(x, expected); local
27 if (ret){
31 return ret;
lttf2_test.c 25 int ret = compareResultCMP(x, expected); local
27 if (ret){
31 return ret;
multf3_test.c 27 int ret = compareResultLD(x, expectedHi, expectedLo); local
29 if (ret){
34 return ret;
netf2_test.c 25 int ret = compareResultCMP(x, expected); local
27 if (ret){
31 return ret;
subtf3_test.c 27 int ret = compareResultLD(x, expectedHi, expectedLo); local
29 if (ret){
34 return ret;
trunctfdf2_test.c 25 int ret = compareResultD(x, expected); local
27 if (ret)
32 return ret;
trunctfsf2_test.c 25 int ret = compareResultF(x, expected); local
27 if (ret){
31 return ret;
unordtf2_test.c 25 int ret = compareResultCMP(x, expected); local
27 if (ret){
31 return ret;
  /external/e2fsprogs/lib/ext2fs/
dblist_dir.c 68 int ret; local
74 ret = ext2fs_process_dir_block(fs, &db_info->blk,
76 if ((ret & BLOCK_ABORT) && !ctx->errcode)
  /external/eigen/lapack/
cholesky.cpp 28 int ret; local
29 if(UPLO(*uplo)==UP) ret = int(internal::llt_inplace<Scalar, Upper>::blocked(A));
30 else ret = int(internal::llt_inplace<Scalar, Lower>::blocked(A));
32 if(ret>=0)
33 *info = ret+1;
  /external/libmtp/examples/
format.c 52 int ret; local
69 ret = LIBMTP_Format_Storage(device, device->storage);
72 ret = 0;
75 if ( ret != 0 ) {
reset.c 52 int ret; local
67 ret = LIBMTP_Reset_Device(device);
70 ret = 0;
73 if ( ret != 0 ) {
  /external/libopus/silk/
control_SNR.c 41 opus_int k, ret = SILK_NO_ERROR; local
80 return ret;
  /external/libselinux/src/
disable.c 14 int fd, ret; local
30 ret = write(fd, buf, strlen(buf));
32 if (ret < 0)
fgetfilecon.c 14 ssize_t ret; local
22 ret = fgetxattr(fd, XATTR_NAME_SELINUX, buf, size - 1);
23 if (ret < 0 && errno == ERANGE) {
37 ret = fgetxattr(fd, XATTR_NAME_SELINUX, buf, size - 1);
40 if (ret == 0) {
43 ret = -1;
45 if (ret < 0)
49 return ret;
getfilecon.c 14 ssize_t ret; local
22 ret = getxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
23 if (ret < 0 && errno == ERANGE) {
37 ret = getxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
40 if (ret == 0) {
43 ret = -1;
45 if (ret < 0)
49 return ret;
lgetfilecon.c 14 ssize_t ret; local
22 ret = lgetxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
23 if (ret < 0 && errno == ERANGE) {
37 ret = lgetxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
40 if (ret == 0) {
43 ret = -1;
45 if (ret < 0)
49 return ret;
setenforce.c 14 int fd, ret; local
29 ret = write(fd, buf, strlen(buf));
31 if (ret < 0)
  /external/libunwind/src/unwind/
ForcedUnwind.c 35 int ret; local
47 ret = _URC_FATAL_PHASE2_ERROR;
53 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
59 return ret;
Resume_or_Rethrow.c 36 int ret; local
43 ret = _URC_FATAL_PHASE2_ERROR;
45 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
50 return ret;
  /external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
event-utils.h 49 char *ret; local
58 ret = string;
60 string = ret + strlen(ret) - 1;
61 while (string > ret) {
68 return ret;
  /external/lldb/source/Core/
InputReaderEZ.cpp 80 Error ret = Initialize(params.m_baton, local
86 return ret;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_surface.c 40 int ret, cpp = _mesa_get_format_bytes(format); local
69 ret = nouveau_bo_new(context_dev(ctx), flags, 0,
72 assert(!ret);
  /external/openssl/crypto/asn1/
a_utf8.c 80 int ret; local
87 ret = 1;
94 ret = 2;
103 ret = 3;
114 ret = 4;
127 ret = 5;
142 ret = 6;
145 return ret;

Completed in 674 milliseconds

1 2 3 4 5 6 7 891011>>