HomeSort by relevance Sort by last modified time
    Searched refs:low (Results 101 - 125 of 743) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 35 * isInEncoding(char high, char low);
37 * which can be called if the two characters from a high/low surrogate pair.
118 * character formed by the high/low pair is in the encoding.
119 * @param high a char that the a high char of a high/low surrogate pair.
120 * @param low a char that is the low char of a high/low surrogate pair.
125 public boolean isInEncoding(char high, char low) {
134 return m_encoding.isInEncoding(high, low);
174 * Returns true if the high/low surrogate pair form
    [all...]
  /external/qemu/fpu/
softfloat-specialize.h 55 uint64_t high, low; member in struct:__anon13564
122 z.low = 0;
213 z.low = 0;
459 z.low = 0;
539 aLow = a.low & ~ LIT64( 0x4000000000000000 );
543 && ( a.low == aLow );
546 && (LIT64( 0x8000000000000000 ) <= ((uint64_t) ( a.low<<1 )));
560 && (LIT64( 0x8000000000000000 ) <= ((uint64_t) ( a.low<<1 )));
564 aLow = a.low & ~ LIT64( 0x4000000000000000 );
568 && ( a.low == aLow )
    [all...]
  /frameworks/base/core/java/android/util/
MathUtils.java 38 public static int constrain(int amount, int low, int high) {
39 return amount < low ? low : (amount > high ? high : amount);
42 public static long constrain(long amount, long low, long high) {
43 return amount < low ? low : (amount > high ? high : amount);
46 public static float constrain(float amount, float low, float high) {
47 return amount < low ? low : (amount > high ? high : amount);
  /dalvik/vm/mterp/mips/
OP_MUL_LONG_2ADDR.S 9 LOAD64(a0, a1, t0) # vAA.low / high
13 LOAD64(a2, a3, t1) # vBB.low / high
25 # vAA <- v0 (low)
  /external/openssl/crypto/bn/
bn_lcl.h 145 * with low Hamming weight, so we use w = 1 for b <= 23.
268 # define BN_UMULT_LOHI(low,high,a,b) \
270 : "=a"(low),"=d"(high) \
281 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high)))
287 # define BN_UMULT_LOHI(low,high,a,b) ({ \
289 (high)=ret>>64; (low)=ret; })
297 # define BN_UMULT_LOHI(low,high,a,b)\
299 : "=l"(low),"=h"(high) \
348 BN_ULONG high,low,ret,tmp=(a);
    [all...]
  /external/libsepol/src/
ports.c 39 /* Create a low level port structure from
50 int low = sepol_port_get_low(data); local
65 tmp_port->u.port.low_port = low;
68 ERR(handle, "low port %d exceeds high port %d",
96 low, high, sepol_port_get_proto_str(proto));
106 int low = port->u.port.low_port; local
122 sepol_port_set_range(tmp_record, low, high);
136 "to record", low, high, sepol_port_get_proto_str(rec_proto));
170 int low, high, proto; local
172 sepol_port_key_unpack(key, &low, &high, &proto)
208 int low, high, proto; local
248 int low, high, proto; local
    [all...]
context_record.c 212 char *tmp = NULL, *low, *high; local
229 low = tmp;
234 if (!(high = strchr(low, ':')))
238 if (sepol_context_set_user(handle, tmp_con, low) < 0)
240 low = high;
243 if (!(high = strchr(low, ':')))
247 if (sepol_context_set_role(handle, tmp_con, low) < 0)
249 low = high;
252 if (!(high = strchr(low, ':'))) {
253 if (sepol_context_set_type(handle, tmp_con, low) < 0
    [all...]
  /external/svox/pico/lib/
picoklex.c 265 picoos_int32 low, mid, high; local
275 low = 0;
279 while (low < high) {
280 mid = (low + high) / 2;
283 low = mid + 1;
288 PICODBG_ASSERT(high == low);
289 /* low points to the first entry greater than or equal to searchval */
291 if (low < this->nrblocks) {
292 indval = klex_getSearchIndexVal(this, low);
294 low--
    [all...]
  /external/icu4c/i18n/
japancal.cpp 384 int32_t low = 0; local
395 low = kCurrentEra;
397 fprintf(stderr, " low=%d (special)\n", low);
406 while (low < high - 1) {
407 int32_t i = (low + high) / 2;
411 fprintf(stderr, " d=%d low=%d, high=%d. Considering %d:M%d D%d Y%d. { we are ?:M%d D%d Y%d }\n",
412 diff,low, high, i, kEraInfo[i].month-1, kEraInfo[i].day, kEraInfo[i].year, internalGet(UCAL_MONTH), internalGet(UCAL_DATE),year);
431 low = i;
436 fprintf(stderr, ". low=%d, high=%d, i=%d, diff=%d.. %d\n", low, high, i, diff, year)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SortUtil.java 312 * @param low Index of beginning element
316 public static void msort(Object[] src, Object[] dest, int low, int high,
318 if(low < high) {
319 int center = (low + high) / 2;
320 msort(src, dest, low, center, comp);
322 merge(src, dest, low, center + 1, high, comp);
327 int low, int middle, int high, Comparator comp) {
329 int pos = low;
330 int numElements = high - low + 1;
332 while (low <= leftEnd && middle <= high)
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MUL_LONG.S 13 * The low word of the result holds ZX, the high word holds
15 * it doesn't fit in the low 64 bits.
25 add r10, r2, r10 @ r10<- r10 + low(ZxW + (YxX))
  /external/compiler-rt/lib/
floattixf.c 80 fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */
82 fb.u.low.all = (du_int)a; /* mantissa */
floatuntixf.c 78 fb.u.high.s.low = (e + 16383); /* exponent */
79 fb.u.low.all = (du_int)a; /* mantissa */
fixunsdfsi.c 42 (fb.u.s.low >> 21)
  /external/qemu/distrib/zlib-1.2.3/
inftrees.c 51 unsigned low; /* low bits for current root entry */ local
52 unsigned mask; /* mask for low root bits */
159 of the low root bits of huff. This is saved in low to check for when a
207 low = (unsigned)(-1); /* trigger new sub-table when len > root */
209 mask = used - 1; /* mask for comparing low */
232 /* replicate for those indices with low len bits equal to huff */
260 if (len > root && (huff & mask) != low) {
284 low = huff & mask
    [all...]
  /external/zlib/src/contrib/infback9/
inftree9.c 51 unsigned low; /* low bits for current root entry */ local
52 unsigned mask; /* mask for low root bits */
153 of the low root bits of huff. This is saved in low to check for when a
200 low = (unsigned)(-1); /* trigger new sub-table when len > root */
202 mask = used - 1; /* mask for comparing low */
226 /* replicate for those indices with low len bits equal to huff */
253 if (len > root && (huff & mask) != low) {
278 low = huff & mask
    [all...]
  /external/compiler-rt/test/Unit/
addvti3_test.c 41 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
42 expectedt.s.high, expectedt.s.low);
absvti2_test.c 42 at.s.high, at.s.low, xt.s.high, xt.s.low,
43 expectedt.s.high, expectedt.s.low);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
wpa.h 58 uint8 low; member in struct:__anon20453::__anon20454
70 uint8 low; member in struct:__anon20455::__anon20456
90 uint8 low; member in struct:__anon20458::__anon20459
99 uint8 low; member in struct:__anon20460::__anon20461
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrt.c 46 u_int32_t high,low; local
48 EXTRACT_WORDS(hx,low,x);
69 if((hx|low)==0)
  /external/checkpolicy/
policy_define.h 46 int define_port_context(unsigned int low, unsigned int high);
48 int define_iomem_context(unsigned long low, unsigned long high);
49 int define_ioport_context(unsigned long low, unsigned long high);
  /external/elfutils/tests/
dwfl-bug-addr-overflow.c 59 Dwfl_Module *low = dwfl_report_module (dwfl, "low", local
62 assert (low);
74 assert (mod == low);
  /external/libsepol/include/sepol/
port_record.h 23 int low, int high, int proto,
27 int *low, int *high, int *proto);
49 extern void sepol_port_set_range(sepol_port_t * port, int low, int high);

Completed in 1728 milliseconds

1 2 3 45 6 7 8 91011>>