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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/intl/
osdep.c 23 typedef int dummy; typedef
  /external/chromium_org/third_party/libusb/src/libusb/
interrupt.c 10 unsigned char dummy = 1; local
12 return usbi_write(ctx->ctrl_pipe[1], &dummy, sizeof(dummy));
  /external/clang/test/CXX/conv/conv.ptr/
p2.cpp 6 void* dummy[] = { &x }; member in namespace:pr7801
  /libcore/dalvik/src/main/java/dalvik/system/
NativeStart.java 20 * Dummy class used during JNI initialization. The JNI functions want
36 private static native void main(String[] dummy);
  /ndk/sources/android/support/include/
xlocale.h 38 void* dummy; member in struct:locale_struct
  /libcore/benchmarks/src/benchmarks/regression/
LoopingBackwardsBenchmark.java 32 int dummy = 0; local
35 dummy += j;
38 return dummy;
42 int dummy = 0; local
45 dummy += j;
48 return dummy;
  /external/chromium_org/content/common/gpu/media/
h264_bit_reader_unittest.cc 14 int dummy = 0; local
18 EXPECT_TRUE(reader.ReadBits(1, &dummy));
19 EXPECT_EQ(dummy, 0x00);
23 EXPECT_TRUE(reader.ReadBits(8, &dummy));
24 EXPECT_EQ(dummy, 0x02);
28 EXPECT_TRUE(reader.ReadBits(31, &dummy));
29 EXPECT_EQ(dummy, 0x23456789);
33 EXPECT_TRUE(reader.ReadBits(1, &dummy));
34 EXPECT_EQ(dummy, 1);
38 EXPECT_TRUE(reader.ReadBits(1, &dummy));
47 int dummy = 0; local
62 int dummy = 0; local
    [all...]
  /external/chromium_org/base/allocator/
type_profiler_map_unittests.cc 24 scoped_ptr<int> dummy(new int(48));
27 type = LookupType(dummy.get());
30 InsertType(dummy.get(), 12, typeid(int));
31 type = LookupType(dummy.get());
35 EraseType(dummy.get());
36 type = LookupType(dummy.get());
41 scoped_ptr<int> dummy(new int(48));
45 EraseType(dummy.get());
46 type = LookupType(dummy.get());
52 scoped_ptr<int> dummy(new int(48))
    [all...]
type_profiler_unittests.cc 58 int* dummy = new int(48); local
61 type = LookupType(dummy);
64 delete dummy;
66 type = LookupType(dummy);
71 int* dummy = new int[kDummyArraySize]; local
74 type = LookupType(dummy);
78 delete[] dummy;
80 type = LookupType(dummy);
85 int *dummy[kDummyArraySize]; local
88 dummy[i] = new int(i)
142 int* dummy = new int(48); local
157 int* dummy = new int(48); local
    [all...]
  /external/chromium_org/build/android/tests/multiple_proguards/src/dummy/
DummyActivity.java 5 package dummy; package
11 * Dummy activity to build apk.
  /external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
SDL_sysmouse.cc 37 static WMcursor dummy; local
38 dummy.bits = 0;
39 return &dummy;
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_tveille.c 40 long dummy; local
43 if (Getcookie(C_VeiL, &dummy) == C_FOUND) {
44 cookie_veil = (tveille_t *) dummy;
  /external/chromium_org/third_party/openssl/openssl/crypto/
LPdir_nyi.c 32 struct LP_dir_context_st { void *dummy; }; member in struct:LP_dir_context_st
  /external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
DummyKeyInput.java 33 package com.jme3.input.dummy;
  /external/openssl/crypto/
LPdir_nyi.c 32 struct LP_dir_context_st { void *dummy; }; member in struct:LP_dir_context_st
  /external/speex/libspeex/
fixed_arm4.h 41 int dummy; local
46 : "=&r"(res), "=&r" (dummy)
54 int dummy; local
59 : "=&r"(res), "=&r" (dummy)
  /external/chromium_org/third_party/openssl/openssl/ssl/
s2_meth.c 81 static void *dummy=&dummy;
  /external/llvm/test/MC/AsmParser/
macros-parsing.s 22 .macro dummy
  /external/openssl/ssl/
s2_meth.c 81 static void *dummy=&dummy;
  /frameworks/base/tools/layoutlib/create/tests/data/
mock_android.jar 
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglConfig.cpp 302 #define CHECK_PROP(dummy,prop_name,op) \
303 if((dummy.prop_name != EGL_DONT_CARE) && (dummy.prop_name op prop_name)) return false;
304 #define CHECK_PROP_CAST(dummy,prop_name,op) \
305 if((((EGLint)dummy.prop_name) != EGL_DONT_CARE) && (dummy.prop_name op prop_name)) return false;
306 //checking if config stands for all the selection crateria of dummy as defined by EGL spec
307 bool EglConfig::choosen(const EglConfig& dummy) {
310 CHECK_PROP(dummy,m_buffer_size,>);
311 CHECK_PROP(dummy,m_red_size,>)
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
byrefcopyint.c 35 voidVoid dummy; variable
44 dummy = ^{
50 voidVoid copy = Block_copy(dummy);
  /external/libvpx/libvpx/vpx_mem/memory_manager/
hmm_grow.c 27 /* Chunk does not have valid dummy end block. */
32 /* Create a new block that absorbs the old dummy end block. */
35 /* Set up the new dummy end block. */
37 head_record *dummy = (head_record *) BAUS_FORWARD(end, n_baus); local
38 dummy->previous_block_size = n_baus;
39 dummy->block_size = 0;
  /bionic/libc/stdio/
wcio.h 39 int dummy; member in struct:wchar_io_data
  /external/chromium_org/third_party/WebKit/Source/wtf/os-win32/
stdbool.h 36 #define CASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1];

Completed in 830 milliseconds

1 2 3 4 5 6 7 8 91011>>