Searched refs:rem (Results 151 - 175 of 288) sorted by relevance

1234567891011>>

/external/openssh/openbsd-compat/
H A Dbsd-misc.c139 int nanosleep(const struct timespec *req, struct timespec *rem) argument
162 if (rem != NULL)
163 TIMEVAL_TO_TIMESPEC(&tremain, rem)
/external/rmi4utils/rmidevice/
H A Drmidevice.cpp336 struct timespec rem; local
341 if (nanosleep(&ts, &rem) == 0) {
345 ts = rem;
/external/boringssl/ios-arm/crypto/fipsmodule/
H A Dghash-armv4.S72 and r14,r4,#0xf @ rem
76 ldrh r8,[sp,r14] @ rem_4bit[rem]
91 and r12,r4,#0xf @ rem
99 ldrh r8,[sp,r12] @ rem_4bit[rem]
109 and r14,r4,#0xf @ rem
110 eor r7,r7,r8,lsl#16 @ ^= rem_4bit[rem]
134 eor r7,r7,r9,lsl#16 @ ^= rem_4bit[rem]
236 and r14,r4,#0xf @ rem
240 ldrh r8,[r2,r14] @ rem_4bit[rem]
253 and r12,r4,#0xf @ rem
[all...]
/external/boringssl/linux-arm/crypto/fipsmodule/
H A Dghash-armv4.S69 and r14,r4,#0xf @ rem
73 ldrh r8,[sp,r14] @ rem_4bit[rem]
88 and r12,r4,#0xf @ rem
96 ldrh r8,[sp,r12] @ rem_4bit[rem]
106 and r14,r4,#0xf @ rem
107 eor r7,r7,r8,lsl#16 @ ^= rem_4bit[rem]
131 eor r7,r7,r9,lsl#16 @ ^= rem_4bit[rem]
231 and r14,r4,#0xf @ rem
235 ldrh r8,[r2,r14] @ rem_4bit[rem]
248 and r12,r4,#0xf @ rem
[all...]
/external/zlib/src/examples/
H A Dgun.c174 rem = 0; \
205 int left; /* bits left in rem */
206 unsigned rem; /* unused bits from input */ local
258 rem = (unsigned)last >> 1; /* remaining 7 bits */
278 code = rem; /* low bits of code */
299 rem = (unsigned)last >> (8 - left); /* unused bits from last byte */
365 /* loop for next code with final and prev as the last match, rem and
/external/iputils/ninfod/
H A Dninfod.c176 size_t rem; local
183 rem = buflen;
185 res = snprintf(buf, rem, "[%s] ", log_level(pri));
186 if (res >= rem)
188 rem -= res;
190 res = vsnprintf(buf + res, rem, fmt, ap);
192 if (res >= rem)
/external/boringssl/src/crypto/fipsmodule/modes/
H A Dgcm.c133 size_t rem, nlo, nhi; local
143 rem = (size_t)Z.lo & 0xf;
147 Z.hi ^= rem_4bit[rem];
149 Z.hi ^= (uint64_t)rem_4bit[rem] << 32;
163 rem = (size_t)Z.lo & 0xf;
167 Z.hi ^= rem_4bit[rem];
169 Z.hi ^= (uint64_t)rem_4bit[rem] << 32;
189 size_t rem, nlo, nhi; local
202 rem = (size_t)Z.lo & 0xf;
206 Z.hi ^= rem_4bit[rem];
[all...]
/external/python/cpython2/Objects/
H A Dlongobject.c1300 twodigits rem = 0; local
1307 rem = (rem << PyLong_SHIFT) | *--pin;
1308 *--pout = hi = (digit)(rem / n);
1309 rem -= (twodigits)hi * n;
1311 return (digit)rem;
1342 digit *pout, *pin, rem, tenpow; local
1407 rem = pout[size-1];
1408 while (rem >= tenpow) {
1426 rem
1556 digit rem = inplace_divrem1(scratch->ob_digit, local
2047 digit rem = 0; local
2220 digit rem, x_digits[2 + (DBL_MANT_DIG + 1) / PyLong_SHIFT]; local
3248 digit rem; local
3269 digit rem; local
3290 digit rem = inplace_divrem1(x->ob_digit, x->ob_digit, x_size, local
3297 PyLongObject *div, *rem; local
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorChipping.h227 const Index rem = index - idx * m_stride; local
228 if (rem + PacketSize <= m_stride) {
229 Index inputIndex = idx * m_inputStride + m_inputOffset + rem;
364 const Index rem = index - idx * this->m_stride; local
365 if (rem + PacketSize <= this->m_stride) {
366 const Index inputIndex = idx * this->m_inputStride + this->m_inputOffset + rem;
/external/iproute2/tipc/
H A Dbearer.c139 struct addrinfo *rem = NULL; local
188 if ((err = getaddrinfo(remip, remport, &hints, &rem))) {
195 if (rem->ai_family != loc->ai_family) {
204 mnl_attr_put(nlh, TIPC_NLA_UDP_REMOTE, rem->ai_addrlen, rem->ai_addr);
207 freeaddrinfo(rem);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zIn.cpp285 UInt64 rem = *searchHeaderSizeLimit - offset; local
286 if (readSize > rem)
287 readSize = (UInt32)rem;
1197 size_t rem = _inByteBack->GetRem(); local
1198 db.NamesBuf.Alloc(rem);
1199 ReadBytes(db.NamesBuf, rem);
1205 size_t curRem = (rem - pos) / 2;
1215 if (pos != rem)
1500 UInt64 rem = fileSize - cur; local
1502 if (rem < kCheckSiz
[all...]
/external/sl4a/ScriptingLayerForAndroid/src/org/apache/harmony/niochar/charset/additional/
H A DIBM437.java78 int rem = bb.remaining();
79 rem = cbRemaining >= rem ? rem : cbRemaining;
85 for(i=bStart; i<bStart+rem; i++) {
96 if(rem == cbRemaining && bb.hasRemaining()) return CoderResult.OVERFLOW;
189 int rem = cb.remaining();
191 rem = bbRemaining <= rem ? bbRemaining : rem;
[all...]
/external/guava/guava/src/com/google/common/math/
H A DLongMath.java350 long rem = p - q * div; // equals p % q
352 if (rem == 0) {
367 checkRoundingUnnecessary(rem == 0);
384 long absRem = abs(rem);
387 // cmpRemToHalfDivisor has the same sign as compare(abs(rem), abs(q) / 2).
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A DgenIndexFilters.bat11 @rem = '--*-Perl-*--
21 @rem ';
/external/libusb/.private/
H A Dbd.cmd2 rem produce the DDK binary files for snapshots
3 rem !!!THIS SCRIPT IS FOR INTERNAL DEVELOPER USE ONLY!!!
/external/libusb/msvc/
H A Dinttypes.h39 intmax_t rem; member in struct:__anon11754
/external/compiler-rt/test/dfsan/
H A Dcustom.cc723 struct timespec req, rem;
726 dfsan_set_label(i_label, &rem, sizeof(rem));
729 int rv = nanosleep(&req, &rem);
732 ASSERT_READ_LABEL(&rem, 1, i_label);
738 rv = nanosleep(&req, &rem);
741 ASSERT_READ_ZERO_LABEL(&rem, sizeof(rem));
/external/boringssl/include/openssl/
H A Dbn.h408 * and the remainder in |rem|. Either of |quotient| or |rem| may be NULL, in
412 OPENSSL_EXPORT int BN_div(BIGNUM *quotient, BIGNUM *rem,
517 #define BN_mod(rem, numerator, divisor, ctx) \
518 BN_div(NULL, (rem), (numerator), (divisor), (ctx))
521 * |rem| < |divisor| is always true. It returns one on success and zero on
523 OPENSSL_EXPORT int BN_nnmod(BIGNUM *rem, const BIGNUM *numerator,
679 * |rem| in order to suit a given generator. (If |rem| is NULL then |ret| %
686 const BIGNUM *add, const BIGNUM *rem,
[all...]
/external/boringssl/src/crypto/fipsmodule/modes/asm/
H A Dghash-armv4.pl209 and $nhi,$Zll,#0xf @ rem
213 ldrh $Tll,[sp,$nhi] @ rem_4bit[rem]
228 and $nlo,$Zll,#0xf @ rem
236 ldrh $Tll,[sp,$nlo] @ rem_4bit[rem]
246 and $nhi,$Zll,#0xf @ rem
247 eor $Zhh,$Zhh,$Tll,lsl#16 @ ^= rem_4bit[rem]
271 eor $Zhh,$Zhh,$Tlh,lsl#16 @ ^= rem_4bit[rem]
313 and $nhi,$Zll,#0xf @ rem
317 ldrh $Tll,[$rem_4bit,$nhi] @ rem_4bit[rem]
330 and $nlo,$Zll,#0xf @ rem
[all...]
/external/boringssl/src/include/openssl/
H A Dbn.h408 * and the remainder in |rem|. Either of |quotient| or |rem| may be NULL, in
412 OPENSSL_EXPORT int BN_div(BIGNUM *quotient, BIGNUM *rem,
517 #define BN_mod(rem, numerator, divisor, ctx) \
518 BN_div(NULL, (rem), (numerator), (divisor), (ctx))
521 * |rem| < |divisor| is always true. It returns one on success and zero on
523 OPENSSL_EXPORT int BN_nnmod(BIGNUM *rem, const BIGNUM *numerator,
679 * |rem| in order to suit a given generator. (If |rem| is NULL then |ret| %
686 const BIGNUM *add, const BIGNUM *rem,
[all...]
/external/iputils/Modules/
H A Dpg3.c316 int rem; local
321 rem = skb_shinfo(skb)->frags[i-1].size/2;
322 if (rem == 0)
325 skb_shinfo(skb)->frags[i-1].size -= rem;
331 skb_shinfo(skb)->frags[i].size = rem;
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DChineseCalendar.java959 int[] rem = new int[1];
960 eyear += floorDivide(month, 12, rem);
961 month = rem[0];
/external/icu/icu4c/source/tools/tzcode/
H A Dlocaltime.c1424 register int_fast64_t rem; local
1456 rem = *timep - tdays * SECSPERDAY;
1484 rem += seconds - tdays * SECSPERDAY;
1490 rem += offset - corr;
1491 while (rem < 0) {
1492 rem += SECSPERDAY;
1495 while (rem >= SECSPERDAY) {
1496 rem -= SECSPERDAY;
1525 tmp->tm_hour = (int) (rem / SECSPERHOUR);
1526 rem
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DChineseCalendar.java979 int[] rem = new int[1];
980 eyear += floorDivide(month, 12, rem);
981 month = rem[0];
/external/syslinux/com32/lib/sys/module/
H A Dcommon.c515 unsigned long rem; local
518 rem = h % nbucket;
520 bucket = gnu_buckets[rem];

Completed in 7882 milliseconds

1234567891011>>