/external/python/cpython2/Tools/pybench/ |
D | Lists.py | 11 l = [] 12 append = l.append 23 l[0] = 3 24 l[1] = 4 25 l[2] = 5 26 l[3] = 3 27 l[4] = 4 28 l[5] = 5 30 x = l[0] 31 x = l[1] [all …]
|
/external/e2fsprogs/intl/ |
D | config.charset | 130 for l in af af_ZA ca ca_ES da da_DK de de_AT de_BE de_CH de_DE de_LU \ 138 echo "$l ISO-8859-1" 139 echo "$l.iso-8859-1 ISO-8859-1" 140 echo "$l.iso-8859-15 ISO-8859-15" 141 echo "$l.iso-8859-15@euro ISO-8859-15" 142 echo "$l@euro ISO-8859-15" 143 echo "$l.cp-437 CP437" 144 echo "$l.cp-850 CP850" 145 echo "$l.cp-1252 CP1252" 146 echo "$l.cp-1252@euro CP1252" [all …]
|
/external/icu/icu4c/source/data/region/ |
D | yo.txt | 5 AD{"Orílẹ́ède Ààndórà"} 6 AE{"Orílẹ́ède Ẹmirate ti Awọn Arabu"} 7 AF{"Orílẹ́ède Àfùgànístánì"} 8 AG{"Orílẹ́ède Ààntígúà àti Báríbúdà"} 9 AI{"Orílẹ́ède Ààngúlílà"} 10 AL{"Orílẹ́ède Àlùbàníánì"} 11 AM{"Orílẹ́ède Améníà"} 12 AO{"Orílẹ́ède Ààngólà"} 13 AR{"Orílẹ́ède Agentínà"} 14 AS{"Sámóánì ti Orílẹ́ède Àméríkà"} [all …]
|
D | yo_BJ.txt | 5 AD{"Orílɛ́ède Ààndórà"} 6 AE{"Orílɛ́ède Ɛmirate ti Awɔn Arabu"} 7 AF{"Orílɛ́ède Àfùgànístánì"} 8 AG{"Orílɛ́ède Ààntígúà àti Báríbúdà"} 9 AI{"Orílɛ́ède Ààngúlílà"} 10 AL{"Orílɛ́ède Àlùbàníánì"} 11 AM{"Orílɛ́ède Améníà"} 12 AO{"Orílɛ́ède Ààngólà"} 13 AR{"Orílɛ́ède Agentínà"} 14 AS{"Sámóánì ti Orílɛ́ède Àméríkà"} [all …]
|
/external/brotli/c/enc/ |
D | static_dict.c | 86 const size_t l = w.len & 0x1F; in BrotliFindAllStaticDictionaryMatches() local 87 const size_t n = (size_t)1 << dictionary->words->size_bits_by_length[l]; in BrotliFindAllStaticDictionaryMatches() 90 w.len = (uint8_t)l; in BrotliFindAllStaticDictionaryMatches() 93 DictMatchLength(dictionary->words, data, id, l, max_length); in BrotliFindAllStaticDictionaryMatches() 99 if (matchlen == l) { in BrotliFindAllStaticDictionaryMatches() 100 AddMatch(id, l, l, matches); in BrotliFindAllStaticDictionaryMatches() 105 if (matchlen >= l - 1) { in BrotliFindAllStaticDictionaryMatches() 106 AddMatch(id + 12 * n, l - 1, l, matches); in BrotliFindAllStaticDictionaryMatches() 107 if (l + 2 < max_length && in BrotliFindAllStaticDictionaryMatches() 108 data[l - 1] == 'i' && data[l] == 'n' && data[l + 1] == 'g' && in BrotliFindAllStaticDictionaryMatches() [all …]
|
/external/u-boot/arch/m68k/cpu/mcf5445x/ |
D | start.S | 128 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0 131 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET), %sp 132 clr.l %sp@- 136 move.l #CONFIG_SYS_INIT_RAM_ADDR, %d0 139 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0 143 move.l #0, %d0 144 move.l #(ICACHE_STATUS), %a1 /* icache */ 145 move.l #(DCACHE_STATUS), %a2 /* dcache */ 146 move.l %d0, (%a1) 147 move.l %d0, (%a2) [all …]
|
/external/u-boot/board/freescale/m54418twr/ |
D | sbf_dram_init.S | 12 move.l #0xFC04002D, %a1 16 move.l #0xEC094060, %a1 20 move.l #0xEC09001A, %a1 24 move.l #0xFC0B8180, %a1 25 move.l #0x00000000, (%a1) 26 move.l #0x40000000, (%a1) 28 move.l #0xFC0B81AC, %a1 29 move.l #0x01030203, (%a1) 31 move.l #0xFC0B8000, %a1 32 move.l #0x01010101, (%a1)+ /* 0x00 */ [all …]
|
/external/libxml2/ |
D | list.c | 59 xmlLinkDeallocator(xmlListPtr l, xmlLinkPtr lk) in xmlLinkDeallocator() argument 63 if(l->linkDeallocator) in xmlLinkDeallocator() 64 l->linkDeallocator(lk); in xmlLinkDeallocator() 98 xmlListLowerSearch(xmlListPtr l, void *data) in xmlListLowerSearch() argument 102 if (l == NULL) in xmlListLowerSearch() 104 … for(lk = l->sentinel->next;lk != l->sentinel && l->linkCompare(lk->data, data) <0 ;lk = lk->next); in xmlListLowerSearch() 118 xmlListHigherSearch(xmlListPtr l, void *data) in xmlListHigherSearch() argument 122 if (l == NULL) in xmlListHigherSearch() 124 … for(lk = l->sentinel->prev;lk != l->sentinel && l->linkCompare(lk->data, data) >0 ;lk = lk->prev); in xmlListHigherSearch() 138 xmlListLinkSearch(xmlListPtr l, void *data) in xmlListLinkSearch() argument [all …]
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_list_test.cc | 26 static void SetList(List *l, ListItem *x = 0, in SetList() argument 28 l->clear(); in SetList() 29 if (x) l->push_back(x); in SetList() 30 if (y) l->push_back(y); in SetList() 31 if (z) l->push_back(z); in SetList() 34 static void CheckList(List *l, ListItem *i1, ListItem *i2 = 0, ListItem *i3 = 0, in CheckList() argument 37 CHECK_EQ(l->front(), i1); in CheckList() 38 l->pop_front(); in CheckList() 41 CHECK_EQ(l->front(), i2); in CheckList() 42 l->pop_front(); in CheckList() [all …]
|
/external/u-boot/board/sysam/stmark2/ |
D | sbf_dram_init.S | 25 move.l #PPMCR0, %a1 29 move.l #MSCR_SDRAMC, %a1 48 move.l #MISCCR2, %a1 52 move.l #DDR_RCR, %a1 53 move.l #0x00000000, (%a1) 54 move.l #0x40000000, (%a1) 60 move.l #DDR_PADCR, %a1 61 move.l #0x01030203, (%a1) /* as freescale tower */ 63 move.l #DDR_CR00, %a1 64 move.l #0x01010101, (%a1)+ /* 0x00 */ [all …]
|
/external/u-boot/include/asm-generic/ |
D | atomic-long.h | 27 static inline long atomic_long_read(atomic_long_t *l) in atomic_long_read() argument 29 atomic64_t *v = (atomic64_t *)l; in atomic_long_read() 34 static inline void atomic_long_set(atomic_long_t *l, long i) in atomic_long_set() argument 36 atomic64_t *v = (atomic64_t *)l; in atomic_long_set() 41 static inline void atomic_long_inc(atomic_long_t *l) in atomic_long_inc() argument 43 atomic64_t *v = (atomic64_t *)l; in atomic_long_inc() 48 static inline void atomic_long_dec(atomic_long_t *l) in atomic_long_dec() argument 50 atomic64_t *v = (atomic64_t *)l; in atomic_long_dec() 55 static inline void atomic_long_add(long i, atomic_long_t *l) in atomic_long_add() argument 57 atomic64_t *v = (atomic64_t *)l; in atomic_long_add() [all …]
|
/external/libcxx/test/std/containers/sequences/list/list.capacity/ |
D | resize_size.pass.cpp | 22 std::list<int> l(5, 2); in main() local 23 l.resize(2); in main() 24 assert(l.size() == 2); in main() 25 assert(std::distance(l.begin(), l.end()) == 2); in main() 26 assert(l == std::list<int>(2, 2)); in main() 29 std::list<int> l(5, 2); in main() local 30 l.resize(10); in main() 31 assert(l.size() == 10); in main() 32 assert(std::distance(l.begin(), l.end()) == 10); in main() 33 assert(l.front() == 2); in main() [all …]
|
/external/u-boot/arch/m68k/cpu/mcf5227x/ |
D | start.S | 108 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0 111 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET), %sp 112 clr.l %sp@- 115 move.l #0xFC008000, %a1 116 move.l #(CONFIG_SYS_CS0_BASE), (%a1) 117 move.l #0xFC008008, %a1 118 move.l #(CONFIG_SYS_CS0_CTRL), (%a1) 119 move.l #0xFC008004, %a1 120 move.l #(CONFIG_SYS_CS0_MASK), (%a1) 126 move.l #0xFC0A4074, %a1 [all …]
|
/external/tensorflow/tensorflow/lite/g3doc/r2/images/convert/ |
D | workflow.svg | 1 …l-720.0 0l0 -540.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000"…
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
D | tsan_mop.cc | 21 MemLoc l; in TEST() local 22 t.Write1(l); in TEST() 34 MemLoc l; in TEST() local 35 t1.Write1(l); in TEST() 36 t2.Write1(l, true); in TEST() 41 MemLoc l; in TEST() local 42 t1.Read1(l); in TEST() 43 t2.Write1(l, true); in TEST() 48 MemLoc l; in TEST() local 49 t1.Write1(l); in TEST() [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
D | VoidVisitorAdapter.java | 48 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit() 54 n.getDefaultValue().ifPresent(l -> l.accept(this, arg)); in visit() 58 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit() 66 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit() 73 n.getInitializer().ifPresent(l -> l.accept(this, arg)); in visit() 75 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit() 82 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit() 89 n.getMessage().ifPresent(l -> l.accept(this, arg)); in visit() 90 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit() 98 n.getComment().ifPresent(l -> l.accept(this, arg)); in visit() [all …]
|
/external/tensorflow/tensorflow/lite/g3doc/images/convert/ |
D | workflow.svg | 1 …l-720.0 0l0 -540.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000"…
|
/external/libffi/src/or1k/ |
D | sysv.S | 45 l.sw -4(r1), r9 /* return address */ 46 l.sw -8(r1), r1 /* stack address */ 47 l.sw -12(r1), r14 /* callee saved registers */ 48 l.sw -16(r1), r16 49 l.sw -20(r1), r18 50 l.sw -24(r1), r20 52 l.ori r14, r1, 0x0 /* save stack pointer */ 53 l.addi r1, r1, -24 55 l.ori r16, r7, 0x0 /* save function address */ 56 l.ori r18, r6, 0x0 /* save ret address */ [all …]
|
/external/python/cpython3/PC/icons/ |
D | pyd.svg | 1 …l-.026-.056.892-1.236-.595-.827-1.45.453c-.069-.061-.141-.118-.213-.175l.151-1.511-.929-.418-1.032…
|
/external/icu/icu4c/source/tools/pkgdata/ |
D | pkgtypes.c | 29 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, i… in pkg_writeCharListWrap() argument 33 while(l != NULL) in pkg_writeCharListWrap() 35 if(l->str) in pkg_writeCharListWrap() 37 uprv_strncpy(buffer, l->str, 1020); in pkg_writeCharListWrap() 48 if(l->str[0] != '"') { in pkg_writeCharListWrap() 50 uprv_strncat(buffer, l->str,1020); in pkg_writeCharListWrap() 52 if(l->str[uprv_strlen(l->str)-1] != '"') { in pkg_writeCharListWrap() 58 ln += (int32_t)uprv_strlen(l->str); in pkg_writeCharListWrap() 61 if(l->next && delim) in pkg_writeCharListWrap() 69 l = l->next; in pkg_writeCharListWrap() [all …]
|
/external/libcxx/test/std/containers/sequences/list/list.cons/ |
D | default.pass.cpp | 22 std::list<int> l; in main() local 23 assert(l.size() == 0); in main() 24 assert(std::distance(l.begin(), l.end()) == 0); in main() 27 std::list<DefaultOnly> l; in main() local 28 assert(l.size() == 0); in main() 29 assert(std::distance(l.begin(), l.end()) == 0); in main() 32 std::list<int> l((std::allocator<int>())); in main() local 33 assert(l.size() == 0); in main() 34 assert(std::distance(l.begin(), l.end()) == 0); in main() 38 std::list<int, min_allocator<int>> l; in main() local [all …]
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_chipping.cpp | 33 for (int l = 0; l < 11; ++l) { in test_simple_chip() local 34 VERIFY_IS_EQUAL(chip1(i,j,k,l), tensor(1,i,j,k,l)); in test_simple_chip() 48 for (int l = 0; l < 11; ++l) { in test_simple_chip() local 49 VERIFY_IS_EQUAL(chip2(i,j,k,l), tensor(i,1,j,k,l)); in test_simple_chip() 63 for (int l = 0; l < 11; ++l) { in test_simple_chip() local 64 VERIFY_IS_EQUAL(chip3(i,j,k,l), tensor(i,j,2,k,l)); in test_simple_chip() 78 for (int l = 0; l < 7; ++l) { in test_simple_chip() local 79 VERIFY_IS_EQUAL(chip4(i,j,k,l), tensor(i,j,k,5,l)); in test_simple_chip() 93 for (int l = 0; l < 7; ++l) { in test_simple_chip() local 94 VERIFY_IS_EQUAL(chip5(i,j,k,l), tensor(i,j,k,l,7)); in test_simple_chip() [all …]
|
/external/u-boot/arch/sh/lib/ |
D | movmem.S | 27 sts.l pr,@-r15 30 mov.l @(48,r5),r0 33 mov.l @(60,r5),r0 35 mov.l r0,@(60,r4) 37 mov.l @(56,r5),r0 39 mov.l r0,@(56,r4) 41 mov.l @(52,r5),r0 43 mov.l r0,@(52,r4) 52 lds.l @r15+,pr 53 mov.l r0,@(56,r4) [all …]
|
/external/ImageMagick/MagickWand/tests/ |
D | script-token-test-results.txt | 1 l=8, c=1, stat=0, len=64, token="-option" 2 l=8, c=9, stat=0, len=64, token="key" 3 l=9, c=1, stat=0, len=64, token="+reset" 4 l=9, c=10, stat=0, len=64, token="imbedded#hash" 5 l=11, c=1, stat=0, len=64, token="This is a single token" 6 l=13, c=1, stat=0, len=64, token="And\ 'even '"more "complex" 7 l=15, c=1, stat=0, len=64, token="Backslash chars \n are returned as is" 8 l=16, c=1, stat=0, len=64, token="regardless \n of quoting" 9 l=18, c=1, stat=0, len=64, token="Single quote escapes" 10 l=19, c=2, stat=0, len=64, token="'" [all …]
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | tensor_list_ops_test.py | 37 l = list_ops.empty_tensor_list( 41 e32 = list_ops.tensor_list_element_shape(l, shape_type=dtypes.int32) 42 e64 = list_ops.tensor_list_element_shape(l, shape_type=dtypes.int64) 48 l = list_ops.empty_tensor_list( 52 l = list_ops.tensor_list_push_back( 53 l, constant_op.constant(1.0, shape=(7, 15))) 54 l = list_ops.tensor_list_push_back( 55 l, constant_op.constant(2.0, shape=(7, 15))) 56 l, e2 = list_ops.tensor_list_pop_back(l, element_dtype=dtypes.float32) 57 _, e1 = list_ops.tensor_list_pop_back(l, element_dtype=dtypes.float32) [all …]
|