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

1 2 3 4 5 6 7 8 91011>>

  /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;
  /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;
ServerConnection.cpp 26 EGLThreadInfo *ti = getEGLThreadInfo(); local
27 if (ti->serverConn) {
28 return ti->serverConn->m_glEnc;
35 EGLThreadInfo *ti = getEGLThreadInfo(); local
36 if (ti->serverConn) {
37 return ti->serverConn->m_gl2Enc;
44 EGLThreadInfo *ti = getEGLThreadInfo(); local
45 if (!ti->serverConn)
47 ti->serverConn = new ServerConnection();
48 if (ti->serverConn->create() < 0)
    [all...]
  /external/fec/
fec.c 15 int i,cnt,ti; local
20 ti = i;
21 while(ti){
22 if(ti & 1)
24 ti >>= 1;
  /external/libcxx/test/std/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/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/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...]
  /prebuilts/go/darwin-x86/src/net/
interface_linux_test.go 13 func (ti *testInterface) setBroadcast(suffix int) error {
14 ti.name = fmt.Sprintf("gotest%d", suffix)
19 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
21 Args: []string{"ip", "link", "add", ti.name, "type", "dummy"},
23 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
25 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name}
    [all...]
interface_bsd_test.go 14 func (ti *testInterface) setBroadcast(suffix int) error {
15 ti.name = fmt.Sprintf("vlan%d", suffix)
20 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
22 Args: []string{"ifconfig", ti.name, "create"},
24 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
26 Args: []string{"ifconfig", ti.name, "destroy"},
31 func (ti *testInterface) setPointToPoint(suffix int) error {
32 ti.name = fmt.Sprintf("gif%d", suffix
    [all...]
interface_unix_test.go 25 func (ti *testInterface) setup() error {
26 for _, cmd := range ti.setupCmds {
34 func (ti *testInterface) teardown() error {
35 for _, cmd := range ti.teardownCmds {
57 ti := &testInterface{local: local, remote: remote}
58 if err := ti.setPointToPoint(5963 + i); err != nil {
61 if err := ti.setup(); err != nil {
68 ti.teardown()
72 if ti.name != ifi.Name {
77 ti.teardown(
    [all...]
  /prebuilts/go/linux-x86/src/net/
interface_linux_test.go 13 func (ti *testInterface) setBroadcast(suffix int) error {
14 ti.name = fmt.Sprintf("gotest%d", suffix)
19 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
21 Args: []string{"ip", "link", "add", ti.name, "type", "dummy"},
23 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
25 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name}
    [all...]
interface_bsd_test.go 14 func (ti *testInterface) setBroadcast(suffix int) error {
15 ti.name = fmt.Sprintf("vlan%d", suffix)
20 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
22 Args: []string{"ifconfig", ti.name, "create"},
24 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
26 Args: []string{"ifconfig", ti.name, "destroy"},
31 func (ti *testInterface) setPointToPoint(suffix int) error {
32 ti.name = fmt.Sprintf("gif%d", suffix
    [all...]
interface_unix_test.go 25 func (ti *testInterface) setup() error {
26 for _, cmd := range ti.setupCmds {
34 func (ti *testInterface) teardown() error {
35 for _, cmd := range ti.teardownCmds {
57 ti := &testInterface{local: local, remote: remote}
58 if err := ti.setPointToPoint(5963 + i); err != nil {
61 if err := ti.setup(); err != nil {
68 ti.teardown()
72 if ti.name != ifi.Name {
77 ti.teardown(
    [all...]
  /external/webrtc/webrtc/common_audio/signal_processing/
complex_bit_reverse_mips.c 66 int16_t tr, ti; local
81 "lh %[ti], 2(%[pcoeftable_8]) \n\t"
85 "addu %[ptr_j], %[frfi], %[ti] \n\t"
87 "addu %[ti], %[frfi], %[tmp4] \n\t"
91 "ulw %[tmp4], 0(%[ti]) \n\t"
95 "usw %[tmp3], 0(%[ti]) \n\t"
99 "lh %[ti], 14(%[pcoeftable_8]) \n\t"
103 "addu %[ti], %[frfi], %[ti] \n\t"
107 "ulw %[tmp4], 0(%[ti]) \n\t
    [all...]
  /external/v8/test/cctest/
test-hydrogen-types.cc 47 HType ti = kTypes[i]; local
50 CHECK(!ti.Equals(tj) || !tj.Equals(tk) || ti.Equals(tk));
59 HType ti = kTypes[i]; local
62 CHECK(!ti.IsSubtypeOf(tj) || !tj.IsSubtypeOf(tk) || ti.IsSubtypeOf(tk));
73 HType ti = kTypes[i]; local
75 CHECK(ti.IsSubtypeOf(ti.Combine(tj)));
76 CHECK(tj.IsSubtypeOf(ti.Combine(tj)))
85 HType ti = kTypes[i]; local
91 HType ti = kTypes[i]; local
100 HType ti = kTypes[i]; local
106 HType ti = kTypes[i]; local
117 HType ti = kTypes[i]; local
164 HType ti = kTypes[i]; local
    [all...]
  /hardware/ti/omap4-aah/ion/
Android.mk 7 LOCAL_C_INCLUDES += $(HARDWARE_TI_OMAP4_BASE)/kernel-headers-ti
8 LOCAL_C_INCLUDES += $(HARDWARE_TI_OMAP4_BASE)/system-core-headers-ti
16 LOCAL_C_INCLUDES += $(HARDWARE_TI_OMAP4_BASE)/kernel-headers-ti
17 LOCAL_C_INCLUDES += $(HARDWARE_TI_OMAP4_BASE)/system-core-headers-ti
25 LOCAL_C_INCLUDES += $(HARDWARE_TI_OMAP4_BASE)/kernel-headers-ti
26 LOCAL_C_INCLUDES += $(HARDWARE_TI_OMAP4_BASE)/system-core-headers-ti
  /external/boringssl/src/decrepit/des/
cfb64ede.c 74 uint32_t ti[2]; local
84 ti[0] = v0;
85 ti[1] = v1;
86 DES_encrypt3(ti, ks1, ks2, ks3);
87 v0 = ti[0];
88 v1 = ti[1];
106 ti[0] = v0;
107 ti[1] = v1;
108 DES_encrypt3(ti, ks1, ks2, ks3);
109 v0 = ti[0]
138 uint32_t ti[2]; local
    [all...]
  /external/skia/src/views/mac/
SkEventNotifier.h 11 + (void)postTimedSkEvent:(NSTimeInterval)ti;
  /external/clang/test/CodeGenCXX/
visibility-ms-compat.cpp 28 const std::type_info &ti = typeid(A); member in namespace:test0
44 const std::type_info &ti = typeid(A); member in namespace:test1
60 const std::type_info &ti = typeid(A); member in namespace:test2
77 const std::type_info &ti = typeid(B<A>); member in namespace:test3
93 const std::type_info &ti = typeid(B<A>); member in namespace:test4
109 const std::type_info &ti = typeid(B<A>); member in namespace:test5
  /external/testng/src/main/java/org/testng/mustache/
Mustache.java 19 int ti = 0; local
20 while (ti < template.length()) {
23 if (template.charAt(ti) == '\n') lineNumber++;
25 if (template.charAt(ti) == '{' && ti + 1 < template.length()
26 && template.charAt(ti + 1) == '{') {
27 int index = ti + 2;
44 int endIndex = findClosingIndex(template, ti, conditionalVariable);
52 String subTemplate = template.substring(ti + variable.length() + 4, endIndex);
62 String subTemplate = template.substring(ti + variable.length() + 4, endIndex)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_tex.c 38 get_tex_format(struct gl_texture_image *ti)
40 switch (ti->TexFormat) {
70 struct gl_texture_image *ti = t->Image[0][t->BaseLevel]; local
90 ti->HeightLog2 << 20 |
91 ti->WidthLog2 << 16 |
93 get_tex_format(ti);

Completed in 862 milliseconds

1 2 3 4 5 6 7 8 91011>>