Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 83) sorted by relevance

1234

/development/ndk/platforms/android-3/include/linux/
Dcirc_buf.h25 …_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); …
27 …E_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1);…
/development/ndk/platforms/android-9/arch-mips/include/asm/
Dtlbflush.h25 #define flush_tlb_range(vma, vmaddr, end) local_flush_tlb_range(vma, vmaddr, end) argument
26 #define flush_tlb_kernel_range(vmaddr,end) local_flush_tlb_kernel_range(vmaddr, end) argument
/development/ndk/platforms/android-3/include/asm-generic/
Dpgtable.h85 …_addr_end(addr, end) ({ unsigned long __boundary = ((addr) + PGDIR_SIZE) & PGDIR_MASK; (__bound… argument
87 …ud_addr_end(addr, end) ({ unsigned long __boundary = ((addr) + PUD_SIZE) & PUD_MASK; (__boundar… argument
90 …md_addr_end(addr, end) ({ unsigned long __boundary = ((addr) + PMD_SIZE) & PMD_MASK; (__boundar… argument
D4level-fixup.h40 #define pud_addr_end(addr, end) (end) argument
Dpgtable-nopmd.h45 #define pmd_addr_end(addr, end) (end) argument
Dpgtable-nopud.h37 #define pud_addr_end(addr, end) (end) argument
/development/ndk/platforms/android-9/arch-x86/include/asm/
Dcacheflush.h26 #define flush_cache_range(vma, start, end) do { } while (0) argument
32 #define flush_icache_range(start, end) do { } while (0) argument
36 #define flush_cache_vmap(start, end) do { } while (0) argument
37 #define flush_cache_vunmap(start, end) do { } while (0) argument
/development/scripts/gdb/
Ddalvik.gdb33 end
43 end
44 end
53 end
65 end
66 end
72 end
/development/ndk/platforms/android-3/arch-arm/include/asm/
Dcacheflush.h74 #define flush_cache_vmap(start, end) flush_cache_all() argument
75 #define flush_cache_vunmap(start, end) flush_cache_all() argument
82 #define flush_cache_user_range(vma,start,end) __cpuc_coherent_user_range((start) & PAGE_MASK, PAG… argument
/development/host/windows/usb/api/
Dadb_object_handle.cpp114 ATLASSERT((found != the_map.end()) && (this == found->second)); in CloseHandle()
116 if ((found != the_map.end()) && (this == found->second)) { in CloseHandle()
156 if (found != the_map.end()) { in Lookup()
Dadb_interface_enum.cpp73 if (interfaces_.end() == current_interface_) { in Next()
/development/samples/Vault/src/com/example/android/vault/
DSecretKeyWrapper.java74 final Calendar end = new GregorianCalendar(); in generateKeyPair() local
75 end.add(Calendar.YEAR, 100); in generateKeyPair()
82 .setEndDate(end.getTime()) in generateKeyPair()
/development/scripts/
Dstack_core.py227 end = start + int(match.group(3))
229 offset_list.append([name, start, end])
230 return name, start, end
239 for file_name, start, end in offset_list:
240 if offset >= start and offset < end:
277 cur_name, start, end = self.ProcessCentralInfo(offset_list, central_info)
278 if not file_name and offset >= start and offset < end:
284 cur_name, start, end = self.ProcessCentralInfo(offset_list, central_info)
285 if not file_name and offset >= start and offset < end:
/development/tools/apkcheck/src/com/android/apkcheck/
DTypeUtils.java118 int end = typeName.lastIndexOf("."); in packageNameOnly() local
119 if (end < 0) { in packageNameOnly()
123 return typeName.substring(0, end); in packageNameOnly()
/development/ide/emacs/
Dandroid-compile.el118 (end (point)))
129 (while (search-forward-regexp android-compile-ignore-re end t)
/development/samples/ApiDemos/src/com/example/android/apis/app/
DPrintCustomContent.java454 int end = -1; in print()
460 int oldEnd = end = start; in print()
461 while (i < writtenPageCount && (end - oldEnd) <= 1) { in print()
462 oldEnd = end; in print()
463 end = writtenPages.valueAt(i); in print()
466 PageRange pageRange = new PageRange(start, end); in print()
468 start = end = -1; in print()
/development/ndk/sources/android/ndk_helper/
Dshader.cpp42 std::string str( data.begin(), data.end() ); in CompileShader()
46 std::map<std::string, std::string>::const_iterator itEnd = map_parameters.end(); in CompileShader()
74 std::vector<uint8_t> v( str.begin(), str.end() ); in CompileShader()
/development/ndk/platforms/android-21/include/linux/
Ddlm_plock.h50 __u64 end; member
/development/host/windows/usb/adb_winapi_test/
Dadb_winapi_test.cpp668 const DWORD* end = g_expected_errors + ARRAYSIZE(g_expected_errors); in get_error_description() local
669 const DWORD* found = std::find(g_expected_errors, end, err); in get_error_description()
670 if (found != end) { in get_error_description()
680 const DWORD* end = g_expected_errors + ARRAYSIZE(g_expected_errors); in is_expected_error() local
681 return std::find(g_expected_errors, end, err) != end; in is_expected_error()
804 it != read_errors.end(); ++it) { in TestCloseRaceCondition()
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/
Dgpio.h42 int end; member
/development/samples/browseable/BasicMediaDecoder/src/com.example.android.basicmediadecoder/
DMainActivity.java77 mTimeAnimator.end(); in onPause()
170 mTimeAnimator.end(); in startPlayback()
/development/tools/mkstubs/src/com/android/mkstubs/stubber/
DMethodStubber.java144 Label start, Label end, int index) { in visitLocalVariable() argument
174 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { in visitTryCatchBlock() argument
/development/samples/browseable/PermissionRequest/src/com.example.android.permissionrequest/
DSimpleWebServer.java127 int end = line.indexOf(' ', start); in handle() local
128 route = line.substring(start, end); in handle()
/development/samples/ApiDemos/src/com/example/android/apis/animation/
DTransition3d.java87 private void applyRotation(int position, float start, float end) { in applyRotation() argument
95 new Rotate3dAnimation(start, end, centerX, centerY, 310.0f, true); in applyRotation()
/development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/
DBasicAndroidKeyStoreFragment.java158 Calendar end = new GregorianCalendar(); in createKeys() local
159 end.add(Calendar.YEAR, 1); in createKeys()
178 .setEndDate(end.getTime()) in createKeys()

1234