/device/generic/goldfish/opengl/system/OpenglSystemCommon/ |
ThreadInfo.cpp | 24 EGLThreadInfo *ti = (EGLThreadInfo *)ptr; local 25 delete ti->hostConn; 26 delete ti; 32 EGLThreadInfo *ti = (EGLThreadInfo *)thread_store_get(&s_tls); local 33 if (ti) return ti; 35 ti = new EGLThreadInfo(); 36 thread_store_set(&s_tls, ti, tlsDestruct); 38 return ti;
|
/device/generic/goldfish/opengl/tests/gles_android_wrapper/ |
ThreadInfo.cpp | 24 EGLThreadInfo *ti = (EGLThreadInfo *)ptr; local 25 delete ti->serverConn; 26 delete ti; 32 EGLThreadInfo *ti = (EGLThreadInfo *)thread_store_get(&s_tls); local 33 if (ti) return ti; 35 ti = new EGLThreadInfo(); 36 thread_store_set(&s_tls, ti, tlsDestruct); 38 return ti;
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
EglThreadInfo.cpp | 28 EglThreadInfo *ti = (EglThreadInfo *)ptr; local 29 delete ti; 35 EglThreadInfo *ti = (EglThreadInfo *)thread_store_get(&s_tls); local 36 if (!ti) { 37 ti = new EglThreadInfo(); 38 thread_store_set(&s_tls, ti, tlsDestruct); 40 return ti;
|
ThreadInfo.cpp | 48 ThreadInfo *ti = (ThreadInfo *)ptr; local 49 delete ti; 55 ThreadInfo *ti = (ThreadInfo *)thread_store_get(&s_tls); local 56 if (!ti) { 57 ti = new ThreadInfo(); 58 thread_store_set(&s_tls, ti, tlsDestruct); 60 LOG_THREADINFO("getThreadInfo EGL %lx %d\n", (long)ti, active_instance); 62 return ti;
|
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/ |
IJFmEnum.java | 3 * Copyright 2001-2011 Texas Instruments, Inc. - http://www.ti.com/ 18 package com.ti.jfm.core;
|
/external/chromium_org/third_party/openssl/openssl/crypto/bf/ |
bf_cfb64.c | 73 BF_LONG ti[2]; local 83 n2l(iv,v0); ti[0]=v0; 84 n2l(iv,v1); ti[1]=v1; 85 BF_encrypt((BF_LONG *)ti,schedule); 87 t=ti[0]; l2n(t,iv); 88 t=ti[1]; l2n(t,iv); 103 n2l(iv,v0); ti[0]=v0; 104 n2l(iv,v1); ti[1]=v1; 105 BF_encrypt((BF_LONG *)ti,schedule); 107 t=ti[0]; l2n(t,iv) [all...] |
bf_ofb64.c | 74 BF_LONG ti[2]; local 81 ti[0]=v0; 82 ti[1]=v1; 90 BF_encrypt((BF_LONG *)ti,schedule); 92 t=ti[0]; l2n(t,dp); 93 t=ti[1]; l2n(t,dp); 101 v0=ti[0]; 102 v1=ti[1]; 107 t=v0=v1=ti[0]=ti[1]=0 [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/des/ |
cfb64enc.c | 73 DES_LONG ti[2]; local 83 c2l(iv,v0); ti[0]=v0; 84 c2l(iv,v1); ti[1]=v1; 85 DES_encrypt1(ti,schedule,DES_ENCRYPT); 87 v0=ti[0]; l2c(v0,iv); 88 v0=ti[1]; l2c(v0,iv); 103 c2l(iv,v0); ti[0]=v0; 104 c2l(iv,v1); ti[1]=v1; 105 DES_encrypt1(ti,schedule,DES_ENCRYPT); 107 v0=ti[0]; l2c(v0,iv) [all...] |
ofb64enc.c | 74 DES_LONG ti[2]; local 81 ti[0]=v0; 82 ti[1]=v1; 90 DES_encrypt1(ti,schedule,DES_ENCRYPT); 92 t=ti[0]; l2c(t,dp); 93 t=ti[1]; l2c(t,dp); 101 v0=ti[0]; 102 v1=ti[1]; 107 t=v0=v1=ti[0]=ti[1]=0 [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/rc2/ |
rc2cfb64.c | 74 unsigned long ti[2]; local 84 c2l(iv,v0); ti[0]=v0; 85 c2l(iv,v1); ti[1]=v1; 86 RC2_encrypt((unsigned long *)ti,schedule); 88 t=ti[0]; l2c(t,iv); 89 t=ti[1]; l2c(t,iv); 104 c2l(iv,v0); ti[0]=v0; 105 c2l(iv,v1); ti[1]=v1; 106 RC2_encrypt((unsigned long *)ti,schedule); 108 t=ti[0]; l2c(t,iv) [all...] |
rc2ofb64.c | 75 unsigned long ti[2]; local 82 ti[0]=v0; 83 ti[1]=v1; 91 RC2_encrypt((unsigned long *)ti,schedule); 93 t=ti[0]; l2c(t,dp); 94 t=ti[1]; l2c(t,dp); 102 v0=ti[0]; 103 v1=ti[1]; 108 t=v0=v1=ti[0]=ti[1]=0 [all...] |
/external/openssl/crypto/bf/ |
bf_cfb64.c | 73 BF_LONG ti[2]; local 83 n2l(iv,v0); ti[0]=v0; 84 n2l(iv,v1); ti[1]=v1; 85 BF_encrypt((BF_LONG *)ti,schedule); 87 t=ti[0]; l2n(t,iv); 88 t=ti[1]; l2n(t,iv); 103 n2l(iv,v0); ti[0]=v0; 104 n2l(iv,v1); ti[1]=v1; 105 BF_encrypt((BF_LONG *)ti,schedule); 107 t=ti[0]; l2n(t,iv) [all...] |
bf_ofb64.c | 74 BF_LONG ti[2]; local 81 ti[0]=v0; 82 ti[1]=v1; 90 BF_encrypt((BF_LONG *)ti,schedule); 92 t=ti[0]; l2n(t,dp); 93 t=ti[1]; l2n(t,dp); 101 v0=ti[0]; 102 v1=ti[1]; 107 t=v0=v1=ti[0]=ti[1]=0 [all...] |
/external/openssl/crypto/des/ |
cfb64enc.c | 73 DES_LONG ti[2]; local 83 c2l(iv,v0); ti[0]=v0; 84 c2l(iv,v1); ti[1]=v1; 85 DES_encrypt1(ti,schedule,DES_ENCRYPT); 87 v0=ti[0]; l2c(v0,iv); 88 v0=ti[1]; l2c(v0,iv); 103 c2l(iv,v0); ti[0]=v0; 104 c2l(iv,v1); ti[1]=v1; 105 DES_encrypt1(ti,schedule,DES_ENCRYPT); 107 v0=ti[0]; l2c(v0,iv) [all...] |
ofb64enc.c | 74 DES_LONG ti[2]; local 81 ti[0]=v0; 82 ti[1]=v1; 90 DES_encrypt1(ti,schedule,DES_ENCRYPT); 92 t=ti[0]; l2c(t,dp); 93 t=ti[1]; l2c(t,dp); 101 v0=ti[0]; 102 v1=ti[1]; 107 t=v0=v1=ti[0]=ti[1]=0 [all...] |
/external/openssl/crypto/rc2/ |
rc2cfb64.c | 74 unsigned long ti[2]; local 84 c2l(iv,v0); ti[0]=v0; 85 c2l(iv,v1); ti[1]=v1; 86 RC2_encrypt((unsigned long *)ti,schedule); 88 t=ti[0]; l2c(t,iv); 89 t=ti[1]; l2c(t,iv); 104 c2l(iv,v0); ti[0]=v0; 105 c2l(iv,v1); ti[1]=v1; 106 RC2_encrypt((unsigned long *)ti,schedule); 108 t=ti[0]; l2c(t,iv) [all...] |
/external/stlport/test/unit/ |
typeinfo_header_test.cpp | 18 const std::type_info& ti = typeid(A);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/ |
hash_code.pass.cpp | 21 const std::type_info& ti = typeid(int); local 23 assert(t1.hash_code() == ti.hash_code());
|
name.pass.cpp | 22 const std::type_info& ti = typeid(int); local 24 assert(std::string(t1.name()) == ti.name());
|
/ndk/tests/device/test-gnustl-full/unit/ |
typeinfo_header_test.cpp | 18 const std::type_info& ti = typeid(A);
|
/ndk/tests/device/test-stlport/unit/ |
typeinfo_header_test.cpp | 18 const std::type_info& ti = typeid(A);
|
/external/dhcpcd/ |
if-pref.c | 37 ifcmp(struct interface *si, struct interface *ti) 41 if (si->state && !ti->state) 43 if (!si->state && ti->state) 45 if (!si->state && !ti->state) 48 if (si->state->new && !ti->state->new) 50 if (!si->state->new && ti->state->new) 54 if (si->state->new && ti->state->new) { 56 till = (ti->state->new->cookie == htonl(MAGIC_COOKIE)); 63 if (si->carrier > ti->carrier) 65 if (si->carrier < ti->carrier [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_transform.c | 44 uint ti = ctx->ti; local 46 ti += tgsi_build_full_instruction(inst, 47 ctx->tokens_out + ti, 49 ctx->max_tokens_out - ti); 50 ctx->ti = ti; 58 uint ti = ctx->ti; local 60 ti += tgsi_build_full_declaration(decl 72 uint ti = ctx->ti; local 86 uint ti = ctx->ti; local [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_transform.c | 44 uint ti = ctx->ti; local 46 ti += tgsi_build_full_instruction(inst, 47 ctx->tokens_out + ti, 49 ctx->max_tokens_out - ti); 50 ctx->ti = ti; 58 uint ti = ctx->ti; local 60 ti += tgsi_build_full_declaration(decl 72 uint ti = ctx->ti; local 86 uint ti = ctx->ti; local [all...] |
/external/kernel-headers/original/linux/ |
thread_info.h | 30 static inline void set_ti_thread_flag(struct thread_info *ti, int flag) 32 set_bit(flag,&ti->flags); 35 static inline void clear_ti_thread_flag(struct thread_info *ti, int flag) 37 clear_bit(flag,&ti->flags); 40 static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag) 42 return test_and_set_bit(flag,&ti->flags); 45 static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag) 47 return test_and_clear_bit(flag,&ti->flags); 50 static inline int test_ti_thread_flag(struct thread_info *ti, int flag) 52 return test_bit(flag,&ti->flags) [all...] |