HomeSort by relevance Sort by last modified time
    Searched full:aint (Results 1 - 25 of 45) sorted by null

1 2

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
oob.rs 3 rs_allocation aInt;
6 rsSetElementAt_int(aInt, value, x);
10 rsSetElementAt_int(aInt, 1, 1);
DebugContext.java 29 Allocation AInt;
51 AInt = Allocation.createTyped(mRS, t);
52 Soob.set_aInt(AInt);
  /external/compiler-rt/lib/builtins/
comparedf2.c 53 const srep_t aInt = toRep(a);
55 const rep_t aAbs = aInt & absMask;
66 if ((aInt & bInt) >= 0) {
67 if (aInt < bInt) return LE_LESS;
68 else if (aInt == bInt) return LE_EQUAL;
77 if (aInt > bInt) return LE_LESS;
78 else if (aInt == bInt) return LE_EQUAL;
98 const srep_t aInt = toRep(a);
100 const rep_t aAbs = aInt & absMask;
105 if ((aInt & bInt) >= 0)
    [all...]
comparesf2.c 53 const srep_t aInt = toRep(a);
55 const rep_t aAbs = aInt & absMask;
66 if ((aInt & bInt) >= 0) {
67 if (aInt < bInt) return LE_LESS;
68 else if (aInt == bInt) return LE_EQUAL;
77 if (aInt > bInt) return LE_LESS;
78 else if (aInt == bInt) return LE_EQUAL;
98 const srep_t aInt = toRep(a);
100 const rep_t aAbs = aInt & absMask;
105 if ((aInt & bInt) >= 0)
    [all...]
comparetf2.c 53 const srep_t aInt = toRep(a);
55 const rep_t aAbs = aInt & absMask;
66 if ((aInt & bInt) >= 0) {
67 if (aInt < bInt) return LE_LESS;
68 else if (aInt == bInt) return LE_EQUAL;
76 if (aInt > bInt) return LE_LESS;
77 else if (aInt == bInt) return LE_EQUAL;
96 const srep_t aInt = toRep(a);
98 const rep_t aAbs = aInt & absMask;
103 if ((aInt & bInt) >= 0)
    [all...]
  /prebuilts/go/darwin-x86/test/bench/shootout/
fannkuch.c 44 #define Aint int
49 Aint* perm;
50 Aint* perm1;
51 Aint* count;
79 #define XCH(x,y) { Aint t_mp; t_mp=(x); (x)=(y); (y)=t_mp; }
  /prebuilts/go/linux-x86/test/bench/shootout/
fannkuch.c 44 #define Aint int
49 Aint* perm;
50 Aint* perm1;
51 Aint* count;
79 #define XCH(x,y) { Aint t_mp; t_mp=(x); (x)=(y); (y)=t_mp; }
  /external/llvm/test/CodeGen/X86/
2006-07-31-SingleRegClass.ll 8 %tmp9.i.i = call i32 asm sideeffect "push %ebp\0Apush %ebx\0Amovl 4($2),%ebp\0Amovl 0($2), %ebx\0Amovl $1,%eax\0Aint $$0x80\0Apop %ebx\0Apop %ebp", "={ax},i,0,{cx},{dx},{si},{di}"( i32 192, i32 %__s.i.i, i32 %tmp5.i.i, i32 %tmp6.i.i, i32 %tmp7.i.i, i32 %tmp8.i.i ) ; <i32> [#uses=1]
  /external/boringssl/src/crypto/x509v3/
v3_utl.c 170 ASN1_INTEGER *aint; local
199 aint = BN_to_ASN1_INTEGER(bn, NULL);
201 if (!aint) {
205 if (isneg) aint->type |= V_ASN1_NEG;
206 return aint;
209 int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint,
214 if(!aint) return 1;
215 if(!(strtmp = i2s_ASN1_INTEGER(NULL, aint))) return 0;
242 int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint)
249 *aint = itmp
    [all...]
v3_cpols.c 365 ASN1_INTEGER *aint;
371 if(!(aint = s2i_ASN1_INTEGER(NULL, cnf->name))) {
375 if(!sk_ASN1_INTEGER_push(nnums, aint)) goto merr;
  /external/icu/icu4c/source/i18n/
umsg.cpp 534 int32_t* aInt;
561 aInt = va_arg(ap, int32_t*);
562 if(aInt){
563 *aInt = (int32_t) args[i].getLong();
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
apitest.rs 90 rs_allocation aInt;
230 i = rsGetElementAt_int(aInt, 0);
231 rsSetElementAt_int(aInt, i, 0);
232 i = rsGetElementAt_int(aInt, 0, 0);
233 rsSetElementAt_int(aInt, i, 0, 0);
234 i = rsGetElementAt_int(aInt, 0, 0, 0);
235 rsSetElementAt_int(aInt, i, 0, 0, 0);
388 rsAllocationIoSend(aInt);
389 rsAllocationIoReceive(aInt);
391 elemNonNull = rsAllocationGetElement(aInt);
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
apitest.rs 90 rs_allocation aInt;
228 i = rsGetElementAt_int(aInt, 0);
229 rsSetElementAt_int(aInt, i, 0);
230 i = rsGetElementAt_int(aInt, 0, 0);
231 rsSetElementAt_int(aInt, i, 0, 0);
232 i = rsGetElementAt_int(aInt, 0, 0, 0);
233 rsSetElementAt_int(aInt, i, 0, 0, 0);
386 rsAllocationIoSend(aInt);
387 rsAllocationIoReceive(aInt);
389 elemNonNull = rsAllocationGetElement(aInt);
    [all...]
  /external/boringssl/src/include/openssl/
x509v3.h 616 OPENSSL_EXPORT int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint);
632 OPENSSL_EXPORT int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint,
634 OPENSSL_EXPORT char * i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, ASN1_INTEGER *aint);
636 OPENSSL_EXPORT char * i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
637 OPENSSL_EXPORT char * i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
  /external/valgrind/memcheck/tests/
vcpu_fbench.c 381 /* aint(x) Return integer part of number. Truncates towards 0 */
383 double aint(x) function
410 x -= (aint(x / twopi) * twopi);
445 x = x - (aint(x / twopi) * twopi); /* roundoff on add of PI/2 */
514 y = aint(x / 0.5);
  /external/valgrind/perf/
fbench.c 377 /* aint(x) Return integer part of number. Truncates towards 0 */
379 double aint(x) function
406 x -= (aint(x / twopi) * twopi);
441 x = x - (aint(x / twopi) * twopi); /* roundoff on add of PI/2 */
510 y = aint(x / 0.5);
  /external/bison/lib/
obstack.h 353 # define obstack_int_grow_fast(OBSTACK,aint) \
356 *(int *) __o1->next_free = (aint); \
471 # define obstack_int_grow_fast(h,aint) \
472 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
obstack.h 350 # define obstack_int_grow_fast(OBSTACK,aint) \
353 *(int *) __o1->next_free = (aint); \
468 # define obstack_int_grow_fast(h,aint) \
469 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
obstack.h 350 # define obstack_int_grow_fast(OBSTACK,aint) \
353 *(int *) __o1->next_free = (aint); \
468 # define obstack_int_grow_fast(h,aint) \
469 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint))
  /external/freetype/src/psaux/
afmparse.c 567 FT_Int* aint )
576 *aint = val.u.i;
  /external/pdfium/third_party/freetype/src/psaux/
afmparse.c 567 FT_Int* aint )
576 *aint = val.u.i;
  /frameworks/base/core/res/res/xml-en/
autotext.xml 33 <word src="aint">ain't</word>
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/x86/
a.out.go 112 AINT
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/x86/
a.out.go 109 AINT
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/x86/
a.out.go 112 AINT

Completed in 1845 milliseconds

1 2