HomeSort by relevance Sort by last modified time
    Searched full:entry (Results 251 - 275 of 27287) sorted by null

<<11121314151617181920>>

  /bionic/tests/math_data/
remquo_intel_data.h 18 { // Entry 0
24 { // Entry 1
30 { // Entry 2
36 { // Entry 3
42 { // Entry 4
48 { // Entry 5
54 { // Entry 6
60 { // Entry 7
66 { // Entry 8
72 { // Entry
    [all...]
remquof_intel_data.h 18 { // Entry 0
24 { // Entry 1
30 { // Entry 2
36 { // Entry 3
42 { // Entry 4
48 { // Entry 5
54 { // Entry 6
60 { // Entry 7
66 { // Entry 8
72 { // Entry
    [all...]
  /external/skia/src/core/
SkBitmapHeap.cpp 111 void SkBitmapHeap::removeFromLRU(SkBitmapHeap::LookupEntry* entry) {
112 if (fMostRecentlyUsed == entry) {
113 fMostRecentlyUsed = entry->fLessRecentlyUsed;
115 SkASSERT(fLeastRecentlyUsed == entry);
121 // Remove entry from its prior place, and make sure to cover the hole.
122 if (fLeastRecentlyUsed == entry) {
123 SkASSERT(entry->fMoreRecentlyUsed != nullptr);
124 fLeastRecentlyUsed = entry->fMoreRecentlyUsed;
126 // Since we have already considered the case where entry is the most recently used, it must
128 SkASSERT(entry->fMoreRecentlyUsed != nullptr)
273 SkBitmapHeapEntry* entry = nullptr; local
    [all...]
  /dalvik/dx/tests/100-local-mismatch/
info.txt 2 variable table entry fundamentally disagrees with an instruction that
  /external/clang/test/CodeGen/
PR2643-null-store-to-bitfield.c 8 } entry = {0}; local
  /external/e2fsprogs/tests/progs/
test_icount_cmds.ct 16 request do_fetch, "Fetch an icount entry",
19 request do_increment, "Increment an icount entry",
22 request do_decrement, "Decrement an icount entry",
25 request do_store, "Store an icount entry",
  /external/libxml2/doc/examples/
writer.xml 2 <EXAMPLE><!--This is a comment with special chars: <???>--><ORDER version="1.0" xml:lang="de"><!--This is another comment with special chars: <???>--><HEADER><X_ORDER_ID>0000053535</X_ORDER_ID><CUSTOMER_ID>1010</CUSTOMER_ID><NAME_1>M?ller</NAME_1><NAME_2>J?rg</NAME_2></HEADER><ENTRIES><ENTRY><ARTICLE>&lt;Test&gt;</ARTICLE><ENTRY_NO>10</ENTRY_NO></ENTRY><ENTRY><ARTICLE>&lt;Test 2&gt;</ARTICLE><ENTRY_NO>20</ENTRY_NO></ENTRY></ENTRIES><FOOTER><TEXT>This is a text.</TEXT></FOOTER></ORDER></EXAMPLE>
  /external/llvm/test/CodeGen/Generic/
trap.ll 3 entry:
  /external/llvm/test/CodeGen/SPARC/
2009-08-28-WeakLinkage.ll 4 entry:
  /external/llvm/test/CodeGen/X86/
2008-03-19-DAGCombinerBug.ll 4 entry:
7 bb71: ; preds = %entry
11 bb77: ; preds = %bb71, %entry
12 %payLoadSize.0 = phi i32 [ %tmp76, %bb71 ], [ 0, %entry ] ; <i32> [#uses=0]
  /external/llvm/test/DebugInfo/PDB/Inputs/
empty.cpp 1 // Build with "cl.exe /Zi empty.cpp /link /debug /nodefaultlib /entry:main"
  /external/llvm/test/Transforms/Inline/
2003-09-22-PHINodesInExceptionDest.ll 4 entry:
8 Call2Invoke: ; preds = %entry
11 LongJmpBlkPre: ; preds = %Call2Invoke, %entry
12 %i.3 = phi i32 [ 0, %entry ]
2003-09-22-PHINodesInNormalInvokeDest.ll 4 entry:
8 else: ; preds = %LJDecisionBB, %entry
9 %i.2 = phi i32 [ 36, %entry ], [ %i.2, %LJDecisionBB ] ; <i32> [#uses=1]
15 RethrowExcept: ; preds = %entry
  /external/llvm/test/Transforms/InstCombine/
2007-12-16-AsmNoUnwind.ll 4 entry:
hoist_instr.ll 5 entry:
8 then: ; preds = %entry
13 endif: ; preds = %then, %entry
14 %X = phi i32 [ %A, %then ], [ 15, %entry ] ; <i32> [#uses=1]
pr21891.ll 4 entry:
9 if.then: ; preds = %entry
13 if.end: ; preds = %if.then, %entry
14 %phi = phi i32 [ %shl, %if.then ], [ undef, %entry ]
  /external/testng/src/main/java/org/testng/internal/
ResultMap.java 11 import java.util.Map.Entry;
31 for (Map.Entry<ITestResult, ITestNGMethod> entry : m_map.entrySet()) {
32 if (entry.getValue().equals(method)) {
33 result.add(entry.getKey());
42 for (Entry<ITestResult, ITestNGMethod> entry : m_map.entrySet()) {
43 if (entry.getValue().equals(m)) {
44 m_map.remove(entry.getKey());
  /external/valgrind/VEX/switchback/
test_simple.c 8 void entry ( void*(*service)(int,int) ) function
  /frameworks/base/tools/aapt/tests/
AaptGroupEntry_test.cpp 26 static ::testing::AssertionResult TestParse(AaptGroupEntry& entry, const String8& dirName,
28 if (entry.initFromDirName(dirName, outType)) {
34 static ::testing::AssertionResult TestParse(AaptGroupEntry& entry, const char* input,
36 return TestParse(entry, String8(input), outType);
40 AaptGroupEntry entry; local
42 EXPECT_TRUE(TestParse(entry, "menu", &type));
47 AaptGroupEntry entry; local
49 EXPECT_TRUE(TestParse(entry, "anim", &type));
52 EXPECT_TRUE(TestParse(entry, "animator", &type));
  /frameworks/volley/src/test/java/com/android/volley/mock/
MockCache.java 30 private Entry mFakeEntry = null;
32 public void setEntryToReturn(Entry entry) {
33 mFakeEntry = entry;
37 public Entry get(String key) {
44 public Entry entryPut = null;
47 public void put(String key, Entry entry) {
50 entryPut = entry;
  /libcore/ojluni/src/main/java/java/security/acl/
AclEntry.java 32 * This is the interface used for representing one entry in an Access
35 * An ACL can be thought of as a data structure with multiple ACL entry
36 * objects. Each ACL entry object contains a set of permissions associated
38 * an individual user or a group). Additionally, each ACL entry is specified
41 * are to be denied. Each principal can have at most one positive ACL entry
42 * and one negative entry; that is, multiple positive or negative ACL
45 * Note: ACL entries are by default positive. An entry becomes a
46 * negative entry only if the
58 * by this ACL entry. If a principal was already set for this ACL entry,
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoFallbackEffect.java 37 public static class Entry {
44 public Entry(Path path, Rect source, RawTexture texture) {
61 private ArrayList<Entry> mList = new ArrayList<Entry>();
69 mList.add(new Entry(path, rect, texture));
72 public Entry getEntry(Path path) {
74 Entry entry = mList.get(i); local
75 if (entry.path == path) return entry;
83 Entry entry = mList.get(i); local
165 Entry entry = mList.get(i); local
174 Entry entry = mList.get(i); local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
bad-size.s 4 .section .text.entry.continue, "xa"
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/reloc/
exitbug.s 4 .EXPORT foo,ENTRY,PRIV_LEV=3
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
bad-size.s 4 .section .text.entry.continue, "xa"

Completed in 2967 milliseconds

<<11121314151617181920>>