Searched defs:rc (Results 126 - 150 of 452) sorted by relevance

1234567891011>>

/external/srtp/crypto/cipher/
H A Daes.c1365 gf2_8 rc; local
1368 rc = 1;
1384 expanded_key[i].v8[0] = aes_sbox[expanded_key[i-1].v8[13]] ^ rc;
1409 rc = gf2_8_shift(rc);
/external/strace/
H A Dstream.c364 int rc = decode_poll(tcp, 0); local
373 return rc;
378 int rc = decode_poll(tcp, tcp->u_arg[2]); local
386 return rc;
/external/toybox/toys/lsb/
H A Dmount.c140 int rc = EINVAL; local
197 rc = mount(dev, dir, type, flags, opts);
198 if ((rc != EACCES && rc != EROFS) || (flags & MS_RDONLY)) break;
199 if (rc == EROFS && fd == -1) {
223 if (rc && errno == ENOTBLK) {
231 rc = xpclose(pid, pipe);
232 if (!rc && len > 1) {
239 error_msg("losetup failed %d", rc);
246 if (!rc) brea
[all...]
/external/toybox/toys/posix/
H A Dcp.c263 int rc; local
272 rc = fchownat(cfd, catch, try->st.st_uid, try->st.st_gid,
274 else rc = fchown(fdout, try->st.st_uid, try->st.st_gid);
275 if (rc) {
317 int rc = 1; local
333 if (!yesno("", 1)) rc = 0;
338 if (rc) rc = rename(src, TT.destname);
342 if (rc) {
H A Dgrep.c93 int rc = 0, skip = 0; local
122 } else rc = 1;
124 rc = regexec((regex_t *)toybuf, start, 3, matches,
130 if (matches[which].rm_so || line[matches[which].rm_eo]) rc = 1;
134 if (rc) skip = matches[which].rm_eo = strlen(start);
140 if (!rc) break;
144 } else if (rc) break;
/external/valgrind/tests/
H A Ds390x_features.c306 int rc, inverted = 0; local
319 rc = go(argv[1], argv[2]);
322 switch (rc) {
323 case 0: rc = 1; break;
324 case 1: rc = 0; break;
325 case 2: rc = 2; break;
329 // printf("rc = %d\n", rc);
331 return rc;
/external/compiler-rt/lib/profile/
H A DInstrProfilingFile.c177 int rc; local
184 rc = writeFileWithName(__llvm_profile_CurrentFilename);
185 if (rc && getenv("LLVM_PROFILE_VERBOSE_ERRORS"))
188 return rc;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_fd.cc25 atomic_uint64_t rc; member in struct:__tsan::FdSync
53 atomic_store(&s->rc, 1, memory_order_relaxed);
58 if (s && atomic_load(&s->rc, memory_order_relaxed) != (u64)-1)
59 atomic_fetch_add(&s->rc, 1, memory_order_relaxed);
64 if (s && atomic_load(&s->rc, memory_order_relaxed) != (u64)-1) {
65 if (atomic_fetch_sub(&s->rc, 1, memory_order_acq_rel) == 1) {
117 atomic_store(&fdctx.globsync.rc, (u64)-1, memory_order_relaxed);
118 atomic_store(&fdctx.filesync.rc, (u64)-1, memory_order_relaxed);
119 atomic_store(&fdctx.socksync.rc, (u64)-1, memory_order_relaxed);
/external/dnsmasq/contrib/wrt/
H A Ddhcp_lease_time.c141 ssize_t rc; local
185 rc = recv(fd, &packet, sizeof(packet), 0);
187 if (rc < (ssize_t)(sizeof(packet) - sizeof(packet.options)))
193 if ((p = option_find(&packet, (size_t)rc, OPTION_LEASE_TIME, 4)))
/external/dnsmasq/src/
H A Dhelper.c176 pid_t rc = wait(&status); local
178 if (rc == pid)
188 if (rc == -1 && errno != EINTR)
407 ssize_t rc; local
412 if ((rc = write(daemon->helperfd, buf, bytes_in_buf)) != -1)
414 if (bytes_in_buf != (size_t)rc)
415 memmove(buf, buf + rc, bytes_in_buf - rc);
416 bytes_in_buf -= rc;
H A Dlease.c119 int rc = 0; local
122 if (!leasestream || (rc = pclose(leasestream)) == -1 || WEXITSTATUS(rc) == 127 || WEXITSTATUS(rc) == 126)
124 if (WEXITSTATUS(rc) == 127)
126 else if (WEXITSTATUS(rc) == 126)
131 if (WEXITSTATUS(rc) != 0)
133 sprintf(daemon->dhcp_buff, "%d", WEXITSTATUS(rc));
134 die(_("lease-init script returned exit code %s"), daemon->dhcp_buff, WEXITSTATUS(rc) + EC_INIT_OFFSET);
H A Dlog.c149 ssize_t rc; local
162 if ((rc = write(log_fd, entries->payload + entries->offset, entries->length)) != -1)
164 entries->length -= rc;
165 entries->offset += rc;
/external/e2fsprogs/lib/ext2fs/
H A Dfileio.c325 errcode_t rc; local
327 rc = ext2fs_file_set_size2(file, file->pos);
329 retval = rc;
/external/e2fsprogs/misc/
H A Dlogsave.c162 int status, rc, pid; local
209 rc = WEXITSTATUS(status);
210 if (rc) {
212 sprintf(buffer, " died with exit status %d\n", rc);
221 rc = 1;
223 rc = 0;
225 return rc;
253 int c, pid, rc; local
300 rc = copy_from_stdin();
302 rc
[all...]
/external/eigen/bench/
H A Dbench_gemm.cpp164 C rc = c; local
200 c = rc;
207 c = rc;
218 c = rc;
/external/emma/core/java12/com/vladium/emma/
H A DCommand.java208 protected final void exit (final boolean showBuildID, final String msg, final Throwable t, final int rc) argument
221 if (rc != RC_OK)
230 System.exit (rc);
/external/fio/engines/
H A Dwindowsaio.c53 int rc = 0; local
58 rc = 1;
61 if (!rc) {
65 rc = 1;
69 if (!rc) {
74 rc = 1;
78 if (rc) {
89 if (!rc) {
97 rc = 1;
104 if (!rc)
153 int rc = 0; local
222 int rc = 0; local
315 int rc = FIO_Q_COMPLETED; local
[all...]
/external/fio/os/
H A Dos-mac.h77 int rc; local
89 rc = sigaction(SIGALRM, &sa, NULL);
91 if (!rc)
92 rc = setitimer(ITIMER_REAL, &tv, &tv_out);
94 if (!rc && ovalue != NULL) {
101 return rc;
/external/icu/icu4c/source/common/
H A Dpropname.cpp92 int32_t rc, r1, r2; local
105 rc=(r1&0xff)-(r2&0xff);
106 if(rc!=0) {
107 return rc;
118 int32_t rc, r1, r2; local
131 rc=(r1&0xff)-(r2&0xff);
132 if(rc!=0) {
133 return rc;
/external/icu/icu4c/source/test/cintltst/
H A Dnfsprep.c153 int left, middle, right,rc; local
160 rc=strncmp(sortedArr[middle],target, targetLen);
162 if(rc<0){
164 }else if(rc >0){
/external/icu/icu4c/source/test/intltest/
H A Dnormconf.cpp427 int32_t rc; local
430 rc=Normalizer::compare(field[0], field[2], (options<<UNORM_COMPARE_NORM_OPTIONS_SHIFT)|U_COMPARE_IGNORE_CASE, status);
434 } else if(rc!=0) {
435 errln("Normalizer::compare(original, NFD, case-insensitive) returned %d instead of 0 for equal", rc);
H A Dsimplethread.cpp369 int32_t rc; local
379 rc = pthread_attr_create(&attr);
382 rc = pthread_create(&(imp->fThread),attr,&SimpleThreadProc,(void*)this);
385 rc = pthread_attr_init(&attr);
401 rc = pthread_create(&(imp->fThread),&attr,&SimpleThreadProc,(void*)this);
404 if (rc != 0) {
410 return rc;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DPunycodeReference.java235 int rc = punycode_success;
237 rc = encode(inLen,in,case_flags, outLen, output);
238 if(rc==punycode_big_output){
246 if(rc==punycode_success){
249 getException(rc);
253 private static void getException(int rc) argument
255 switch(rc){
273 int rc = punycode_success;
276 rc = decode(input.length(),in, outLen, output,case_flags);
277 if(rc
[all...]
/external/iputils/ninfod/
H A Dninfod_core.c525 int rc; local
618 rc = ni_policy(p);
619 if (rc <= 0) {
623 if (rc < 0) {
/external/iputils/
H A Dtracepath.c315 int rc; local
375 rc = idna_to_ascii_lz(argv[0], &p, 0);
376 if (rc != IDNA_SUCCESS) {
377 fprintf(stderr, "IDNA encoding failed: %s\n", idna_strerror(rc));

Completed in 643 milliseconds

1234567891011>>