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

1 2 3 4 5 6 7 8 910

  /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;
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
ThreadInfo.cpp 24 EGLThreadInfo *ti = (EGLThreadInfo *)ptr; local
25 delete ti->hostConn;
26 delete ti;
33 EGLThreadInfo *ti = (EGLThreadInfo *)thread_store_get(&s_tls); local
34 if (ti) return ti;
36 ti = new EGLThreadInfo();
37 thread_store_set(&s_tls, ti, tlsDestruct);
39 return ti;
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglThreadInfo.cpp 42 EglThreadInfo *ti = static_cast<EglThreadInfo*>(s_tls->get()); local
43 if (!ti) {
44 ti = new EglThreadInfo();
45 s_tls->set(ti);
47 return ti;
  /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...]
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/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());
  /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...]

Completed in 451 milliseconds

1 2 3 4 5 6 7 8 910