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

1 2

  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicBlendThunker.java 44 AllocationThunker aint = (AllocationThunker)ain; local
48 mN.forEachClear(aint.getNObj(), aoutt.getNObj());
65 AllocationThunker aint = (AllocationThunker)ain; local
69 mN.forEachSrc(aint.getNObj(), aoutt.getNObj());
86 AllocationThunker aint = (AllocationThunker)ain; local
90 mN.forEachDst(aint.getNObj(), aoutt.getNObj());
107 AllocationThunker aint = (AllocationThunker)ain; local
111 mN.forEachSrcOver(aint.getNObj(), aoutt.getNObj());
128 AllocationThunker aint = (AllocationThunker)ain; local
132 mN.forEachDstOver(aint.getNObj(), aoutt.getNObj())
149 AllocationThunker aint = (AllocationThunker)ain; local
170 AllocationThunker aint = (AllocationThunker)ain; local
191 AllocationThunker aint = (AllocationThunker)ain; local
212 AllocationThunker aint = (AllocationThunker)ain; local
233 AllocationThunker aint = (AllocationThunker)ain; local
254 AllocationThunker aint = (AllocationThunker)ain; local
275 AllocationThunker aint = (AllocationThunker)ain; local
296 AllocationThunker aint = (AllocationThunker)ain; local
317 AllocationThunker aint = (AllocationThunker)ain; local
338 AllocationThunker aint = (AllocationThunker)ain; local
    [all...]
ScriptIntrinsic3DLUTThunker.java 67 AllocationThunker aint = (AllocationThunker)ain; local
70 mN.forEach(aint.getNObj(), aoutt.getNObj());
ScriptIntrinsicBlurThunker.java 49 AllocationThunker aint = (AllocationThunker) ain; local
51 mN.setInput(aint.getNObj());
ScriptIntrinsicConvolve3x3Thunker.java 47 AllocationThunker aint = (AllocationThunker)ain; local
49 mN.setInput(aint.getNObj());
ScriptIntrinsicConvolve5x5Thunker.java 47 AllocationThunker aint = (AllocationThunker)ain; local
49 mN.setInput(aint.getNObj());
ScriptIntrinsicLUTThunker.java 78 AllocationThunker aint = (AllocationThunker)ain; local
81 mN.forEach(aint.getNObj(), aoutt.getNObj());
ScriptIntrinsicYuvToRGBThunker.java 47 AllocationThunker aint = (AllocationThunker)ain; local
49 mN.setInput(aint.getNObj());
ScriptIntrinsicColorMatrixThunker.java 88 AllocationThunker aint = (AllocationThunker)ain; local
91 mN.forEach(aint.getNObj(), aoutt.getNObj());
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_utl.c 162 ASN1_INTEGER *aint; local
191 aint = BN_to_ASN1_INTEGER(bn, NULL);
193 if (!aint) {
197 if (isneg) aint->type |= V_ASN1_NEG;
198 return aint;
201 int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint,
206 if(!aint) return 1;
207 if(!(strtmp = i2s_ASN1_INTEGER(NULL, aint))) return 0;
234 int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint)
241 *aint = itmp
    [all...]
v3_cpols.c 342 ASN1_INTEGER *aint;
348 if(!(aint = s2i_ASN1_INTEGER(NULL, cnf->name))) {
352 if(!sk_ASN1_INTEGER_push(nnums, aint)) goto merr;
x509v3.h 626 int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint);
644 int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint,
646 char * i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, ASN1_INTEGER *aint);
648 char * i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
649 char * i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
  /external/openssl/crypto/x509v3/
v3_utl.c 162 ASN1_INTEGER *aint; local
191 aint = BN_to_ASN1_INTEGER(bn, NULL);
193 if (!aint) {
197 if (isneg) aint->type |= V_ASN1_NEG;
198 return aint;
201 int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint,
206 if(!aint) return 1;
207 if(!(strtmp = i2s_ASN1_INTEGER(NULL, aint))) return 0;
234 int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint)
241 *aint = itmp
    [all...]
v3_cpols.c 342 ASN1_INTEGER *aint;
348 if(!(aint = s2i_ASN1_INTEGER(NULL, cnf->name))) {
352 if(!sk_ASN1_INTEGER_push(nnums, aint)) goto merr;
  /external/valgrind/main/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/main/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))
  /ndk/sources/host-tools/sed-4.2.1/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/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-4.6/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.7-4.6/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/sdk/renderscript/lib/
javalib.jar 
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
obstack.h 389 # define obstack_int_grow_fast(OBSTACK,aint) \
392 *(int *) __o1->next_free = (aint); \
505 # define obstack_int_grow_fast(h,aint) \
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
obstack.h 389 # define obstack_int_grow_fast(OBSTACK,aint) \
392 *(int *) __o1->next_free = (aint); \
505 # define obstack_int_grow_fast(h,aint) \
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
obstack.h 389 # define obstack_int_grow_fast(OBSTACK,aint) \
392 *(int *) __o1->next_free = (aint); \
505 # define obstack_int_grow_fast(h,aint) \
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
obstack.h 389 # define obstack_int_grow_fast(OBSTACK,aint) \
392 *(int *) __o1->next_free = (aint); \
505 # define obstack_int_grow_fast(h,aint) \

Completed in 1214 milliseconds

1 2