Searched defs:rc (Results 1 - 25 of 723) sorted by relevance

1234567891011>>

/external/srec/portable/src/
H A DESR_ReturnCode.c24 const LCHAR* ESR_rc2str(const ESR_ReturnCode rc) argument
26 switch (rc) {
H A DpLastError.c39 ESR_ReturnCode rc; local
42 rc = PLogIsInitialized(&isInit);
43 if (rc != ESR_SUCCESS)
H A DPANSIFileSystem.c43 ESR_ReturnCode rc; local
47 CHKLOG(rc, PANSIFileSystemSingleton->destroy(PANSIFileSystemSingleton));
51 return rc;
/external/srec/portable/src/UNIX/
H A DPFileWrapUNIX_OS_Specific.c33 ESR_ReturnCode rc; local
39 rc = ESR_SUCCESS;
46 rc = ESR_IDENTIFIER_COLLISION;
50 rc = ESR_NO_MATCH_ERROR;
55 rc = ESR_INVALID_STATE;
59 return ( rc );
66 ESR_ReturnCode rc; local
72 rc = ESR_SUCCESS;
79 rc = ESR_BUFFER_OVERFLOW;
83 rc
106 ESR_ReturnCode rc; local
[all...]
H A DPFileSystemUNIXImpl.c41 ESR_ReturnCode rc; local
54 CHKLOG(rc, PANSIFileSystemCreate());
56 CHKLOG(rc, PMemSetLogEnabled(ESR_FALSE));
57 CHKLOG(rc, PHashTablePutValue(PFileSystemPathMap, L("/"), PANSIFileSystemSingleton, NULL));
58 CHKLOG(rc, PHashTablePutValue(ANSIImpl->directoryMap, L("/"), L("/"), NULL));
59 CHKLOG(rc, PANSIFileSystemSingleton->createPFile(PANSIFileSystemSingleton, L("/dev/stdin"), isLittleEndian, &PSTDIN));
63 CHKLOG(rc, PANSIFileSystemSingleton->createPFile(PANSIFileSystemSingleton, L("/dev/stdout"), isLittleEndian, &PSTDOUT));
68 CHKLOG(rc, PANSIFileSystemSingleton->createPFile(PANSIFileSystemSingleton, L("/dev/stderr"), isLittleEndian, &PSTDERR));
75 CHKLOG(rc, PtrdIsEnabled(&threadingEnabled));
78 CHKLOG(rc, PtrdMonitorDestro
96 ESR_ReturnCode rc; local
[all...]
/external/chromium_org/third_party/opus/src/silk/float/
H A Dk2a_FLP.c37 const silk_float *rc, /* I reflection coefficients [order] */
49 A[ n ] += Atmp[ k - n - 1 ] * rc[ k ];
51 A[ k ] = -rc[ k ];
35 silk_k2a_FLP( silk_float *A, const silk_float *rc, opus_int32 order ) argument
H A DLPC_inv_pred_gain_FLP.c46 double invGain, rc, rc_mult1, rc_mult2; local
55 rc = -Anew[ k ];
56 if( rc > RC_THRESHOLD || rc < -RC_THRESHOLD ) {
59 rc_mult1 = 1.0f - rc * rc;
66 Anew[ n ] = (silk_float)( ( Aold[ n ] - Aold[ k - n - 1 ] * rc ) * rc_mult2 );
69 rc = -Anew[ 0 ];
70 if( rc > RC_THRESHOLD || rc <
[all...]
/external/clang/test/SemaCXX/
H A DPR5086-ambig-resolution-enum.cpp11 void foo(const C& rc) { argument
13 const char *p = rc.fun1(BUFLEN - 2, C::e1);
/external/libexif/test/
H A Dtest-sorted.c31 int rc = 0; local
40 rc = 1;
44 rc = 1;
49 return rc;
/external/libopus/silk/float/
H A Dk2a_FLP.c37 const silk_float *rc, /* I reflection coefficients [order] */
49 A[ n ] += Atmp[ k - n - 1 ] * rc[ k ];
51 A[ k ] = -rc[ k ];
35 silk_k2a_FLP( silk_float *A, const silk_float *rc, opus_int32 order ) argument
/external/valgrind/main/memcheck/tests/
H A Dsigkill.c20 int rc; local
35 rc = sigaction (i /*SIGKILL*/, &sa, NULL);
36 if (rc) perror ("");
39 rc = sigaction (i /*SIGKILL*/, NULL, &sa);
40 if (rc) perror ("");
/external/chromium_org/third_party/libusb/src/msvc/
H A Dmissing.c39 LONG rc; local
50 rc = RegOpenKeyEx(HKEY_LOCAL_MACHINE, ENVIRONMENT_REG_PATH, 0, KEY_QUERY_VALUE, &hkey);
51 if (rc != ERROR_SUCCESS) {
52 usbi_dbg("Failed to open registry key for getenv with error %d", rc);
58 rc = RegQueryValueEx(hkey, wName, NULL, &dwType,
61 if (rc != ERROR_SUCCESS) {
62 usbi_dbg("Failed to read registry key value for getenv with error %d", rc);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dthread_lister.c53 int rc; local
64 rc = callback(parameter, 1, &pid, ap);
70 return rc;
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dthread_lister.c53 int rc; local
64 rc = callback(parameter, 1, &pid, ap);
70 return rc;
/external/libcap-ng/libcap-ng-0.7/bindings/python/test/
H A Dcapng-test.py32 rc = capng.capng_update(capng.CAPNG_ADD, capng.CAPNG_EFFECTIVE, i) variable
33 if rc:
37 rc = capng.capng_have_capability(capng.CAPNG_EFFECTIVE, int(i)) variable
38 if rc <= capng.CAPNG_NONE:
48 rc = capng.capng_update(capng.CAPNG_DROP, capng.CAPNG_EFFECTIVE, i) variable
49 if rc:
58 rc = capng.capng_update(capng.CAPNG_ADD, capng.CAPNG_EFFECTIVE, i) variable
59 if rc:
/external/libcap-ng/libcap-ng-0.7/src/test/
H A Dlib_test.c32 int rc, i, len, last = CAP_LAST_CAP; local
64 rc = capng_update(CAPNG_ADD, CAPNG_EFFECTIVE, i);
65 if (rc) {
69 rc = capng_have_capability(CAPNG_EFFECTIVE, i);
70 if (rc == 0) {
83 rc = capng_update(CAPNG_ADD, CAPNG_BOUNDING_SET, i);
84 if (rc) {
88 rc = capng_have_capability(CAPNG_BOUNDING_SET, i);
89 if (rc == 0) {
120 rc
[all...]
/external/libexif/contrib/examples/
H A Dthumbnail.c13 int rc = 1; local
19 return rc;
52 rc = 0;
55 rc = 2;
59 rc = 1;
65 return rc;
/external/oprofile/libabi/tests/
H A Dabi_test.cpp61 int rc = odb_open(&dest, db_filename.c_str(), ODB_RDWR, local
64 if (rc) {
66 << strerror(rc) << endl;
88 int rc = odb_add_node(&dest, i, i); local
89 if (rc != EXIT_SUCCESS) {
90 cerr << strerror(rc) << endl;
/external/qemu/distrib/sdl-1.2.15/src/loadso/beos/
H A DSDL_sysloadso.c52 status_t rc = get_image_symbol(library_id, name, B_SYMBOL_TYPE_TEXT, &sym); local
53 if (rc != B_NO_ERROR) {
54 SDL_SetError(strerror(rc));
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtesterror.c14 static void quit(int rc) argument
17 exit(rc);
/external/srec/srec/ca/
H A Drec_load.c46 int rc; local
57 rc = add_acoustic_model_for_recognition(hRecog->recm, hAcoust->swimodel);
68 int rc; local
69 rc = clear_acoustic_models_for_recognition(hRecog->recm);
/external/valgrind/main/memcheck/tests/vbit-test/
H A Dirops.c1024 int rc; local
1026 rc = system(S390X_FEATURES " s390x-fpext");
1028 rc /= 256;
1029 if (rc != 0) return NULL;
1050 int rc; local
1052 rc = system(S390X_FEATURES " s390x-pfpo");
1054 rc /= 256;
1055 if (rc != 0) return NULL;
/external/chromium_org/base/
H A Dsafe_strerror_posix.cc41 char *rc = (*strerror_r_ptr)(err, buf, len); local
42 if (rc != buf) {
46 strncat(buf, rc, len - 1);
/external/chromium_org/net/quic/
H A Dquic_server_bin.cc69 int rc = server.Listen(net::IPEndPoint(ip, FLAGS_port)); local
70 if (rc < 0) {
/external/chromium_org/third_party/icu/source/samples/case/
H A Dcase.cpp80 int rc = c_main(out); local
82 return rc;

Completed in 1942 milliseconds

1234567891011>>