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

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/thread/win32/
win_ce_semaphore.h 7 LONG MaxCount;
8 volatile LONG CurCount;
17 extern SYNCHHANDLE CreateSemaphoreCE (LPSECURITY_ATTRIBUTES, LONG, LONG, LPCTSTR);
19 extern BOOL ReleaseSemaphoreCE (SYNCHHANDLE, LONG, LPLONG);
  /development/host/windows/usb/api/
adb_api_instance.h 76 LONG AddRef() {
86 LONG Release() {
87 LONG ret = InterlockedDecrement(&ref_count_);
107 LONG ref_count_;
adb_object_handle.h 98 virtual LONG AddRef();
108 virtual LONG Release();
181 LONG ref_count_;
  /libcore/luni/src/main/java/libcore/io/
SizeOf.java 24 public static final int LONG = 8;
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_win.h 78 STDMETHODIMP accHitTest(LONG x_left, LONG y_top, VARIANT* child);
81 STDMETHODIMP accLocation(LONG* x_left,
82 LONG* y_top,
83 LONG* width,
84 LONG* height,
88 STDMETHODIMP accNavigate(LONG nav_dir, VARIANT start, VARIANT* end);
94 STDMETHODIMP get_accChildCount(LONG* child_count);
127 STDMETHODIMP accSelect(LONG flags_sel, VARIANT var_id);
131 LONG* topic_id)
    [all...]
  /external/chromium/base/win/
registry.h 31 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access);
33 LONG CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
36 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
39 LONG CreateKey(const wchar_t* name, REGSAM access);
42 LONG OpenKey(const wchar_t* name, REGSAM access);
49 LONG ReadName(int index, std::wstring* name) const;
56 LONG DeleteKey(const wchar_t* name);
59 LONG DeleteValue(const wchar_t* name);
63 LONG ReadValue(const wchar_t* name, void* data, DWORD* dsize,
65 LONG ReadValue(const wchar_t* name, std::wstring* value) const
    [all...]
registry.cc 42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
47 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
53 LONG result = RegCreateKeyEx(rootkey, subkey, 0, NULL,
59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
64 LONG result = RegOpenKeyEx(rootkey, subkey, 0, access, &key_);
68 LONG RegKey::CreateKey(const wchar_t* name, REGSAM access) {
73 LONG result = RegCreateKeyEx(key_, name, 0, NULL, REG_OPTION_NON_VOLATILE,
81 LONG RegKey::OpenKey(const wchar_t* name, REGSAM access) {
86 LONG result = RegOpenKeyEx(key_, name, 0, access, &subkey);
106 LONG result = RegQueryInfoKey(key_, NULL, 0, NULL, NULL, NULL, NULL, &count
    [all...]
  /dalvik/hit/src/com/android/hit/
Types.java 30 public static final int LONG = 11;
47 case 'J': return 8; // long
57 case LONG: return 8;
74 case 'J': return "long";
84 case LONG: return "long";
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeTag.java 25 TypeData LONG = new TypeData.BasicType("long", StackMapTable.LONG);
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibevents_c.h 29 extern LONG
  /external/chromium/base/
fix_wp64.h 20 // doing a (LONG) C-style cast that triggers invariably the warning C4312 when
24 reinterpret_cast<volatile LONG*>(target),
25 static_cast<LONG>(reinterpret_cast<LONG_PTR>(value)))));
32 // SetWindowLongX(). The problem is that this function takes a LONG argument
35 return ::SetWindowLongA(window, index, static_cast<LONG>(new_long));
42 return ::SetWindowLongW(window, index, static_cast<LONG>(new_long));
63 return ::SetClassLongA(window, index, static_cast<LONG>(new_long));
70 return ::SetClassLongW(window, index, static_cast<LONG>(new_long));
atomicops_internals_x86_msvc.h 19 LONG result = InterlockedCompareExchange(
20 reinterpret_cast<volatile LONG*>(ptr),
21 static_cast<LONG>(new_value),
22 static_cast<LONG>(old_value));
28 LONG result = InterlockedExchange(
29 reinterpret_cast<volatile LONG*>(ptr),
30 static_cast<LONG>(new_value));
37 reinterpret_cast<volatile LONG*>(ptr),
38 static_cast<LONG>(increment)) + increment;
  /external/chromium/chrome/browser/autocomplete/
autocomplete_accessibility.h 44 STDMETHODIMP get_accChildCount(LONG* child_count);
53 STDMETHODIMP accNavigate(LONG nav_dir, VARIANT start, VARIANT* end);
77 STDMETHODIMP accLocation(LONG* x_left, LONG* y_top, LONG* width, LONG* height,
81 STDMETHODIMP accHitTest(LONG x_left, LONG y_top, VARIANT* child);
93 STDMETHODIMP accSelect(LONG flags_sel, VARIANT var_id);
98 LONG* topic_id)
    [all...]
autocomplete_accessibility.cc 28 STDMETHODIMP AutocompleteAccessibility::get_accChildCount(LONG* child_count) {
69 STDMETHODIMP AutocompleteAccessibility::accNavigate(LONG nav_dir, VARIANT start,
185 STDMETHODIMP AutocompleteAccessibility::accLocation(LONG* x_left, LONG* y_top,
186 LONG* width, LONG* height,
197 STDMETHODIMP AutocompleteAccessibility::accHitTest(LONG x_left, LONG y_top,
228 STDMETHODIMP AutocompleteAccessibility::accSelect(LONG flagsSelect,
242 LONG* topic_id)
    [all...]
  /libcore/luni/src/main/java/java/nio/
LongToByteBufferAdapter.java 22 * This class wraps a byte buffer to be a long buffer.
45 super(byteBuffer.capacity() / SizeOf.LONG);
66 byteBuffer.limit(limit * SizeOf.LONG);
67 byteBuffer.position(position * SizeOf.LONG);
87 public long get() {
91 return byteBuffer.getLong(position++ * SizeOf.LONG);
95 public long get(int index) {
97 return byteBuffer.getLong(index * SizeOf.LONG);
101 public LongBuffer get(long[] dst, int dstOffset, int longCount) {
102 byteBuffer.limit(limit * SizeOf.LONG);
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
GcEventContainer.java 24 * int or long format, but encodes several values on 4 longs.
34 private long gcTime;
35 private long bytesFreed;
36 private long objectsFreed;
37 private long actualSize;
38 private long allowedSize;
39 private long softLimit;
40 private long objectsAllocated;
41 private long bytesAllocated;
42 private long zActualSize
    [all...]
EventValueDescription.java 56 if ((type != EventValueType.INT && type != EventValueType.LONG)
101 * If the type is {@link EventValueType#INT} or {@link EventValueType#LONG}, the
110 if (mEventValueType == EventValueType.INT || mEventValueType == EventValueType.LONG) {
174 case LONG:
175 return value instanceof Long;
202 case LONG:
204 return Long.valueOf(value);
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5events_c.h 29 extern LONG
  /external/skia/src/ports/
SkThread_win.cpp 24 return InterlockedIncrement(reinterpret_cast<LONG*>(addr)) - 1;
29 return InterlockedDecrement(reinterpret_cast<LONG*>(addr)) + 1;
  /development/host/windows/usb/winusb/
adb_winusb_io_completion.h 81 virtual LONG Release();
  /external/v8/src/
atomicops_internals_x86_msvc.h 42 LONG result = InterlockedCompareExchange(
43 reinterpret_cast<volatile LONG*>(ptr),
44 static_cast<LONG>(new_value),
45 static_cast<LONG>(old_value));
51 LONG result = InterlockedExchange(
52 reinterpret_cast<volatile LONG*>(ptr),
53 static_cast<LONG>(new_value));
60 reinterpret_cast<volatile LONG*>(ptr),
61 static_cast<LONG>(increment)) + increment;
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 79 LONG(0L),
110 INT64 (JavaType.LONG , WIRETYPE_VARINT ),
111 UINT64 (JavaType.LONG , WIRETYPE_VARINT ),
113 FIXED64 (JavaType.LONG , WIRETYPE_FIXED64 ),
131 SFIXED64(JavaType.LONG , WIRETYPE_FIXED64 ),
133 SINT64 (JavaType.LONG , WIRETYPE_VARINT );
  /external/chromium/testing/gtest/test/
gtest_break_on_failure_unittest_.cc 58 LONG WINAPI ExitWithExceptionCode(
  /external/webkit/Source/WebCore/accessibility/win/
AXObjectCacheWin.cpp 101 ASSERT(obj->axObjectID() <= numeric_limits<LONG>::max());
103 NotifyWinEvent(msaaEvent, page->chrome()->platformPageClient(), OBJID_CLIENT, -static_cast<LONG>(obj->axObjectID()));
119 objID %= std::numeric_limits<LONG>::max();
122 ASSERT(objID >= 1 && objID <= std::numeric_limits<LONG>::max());
  /external/icu4c/common/
wintz.c 95 LONG result;
119 static LONG openTZRegKey(HKEY *hkey, const char *winid)
123 LONG result;
150 static LONG getTZI(const char *winid, TZI *tzi)
153 LONG result;
231 LONG result;

Completed in 587 milliseconds

1 2 3 4 5 6 7 8 91011>>