/external/llvm-project/llvm/test/CodeGen/ARM/ |
D | vldm-sched-a9.ll | 34 %el.0 = load i64, i64* %addr.0, align 8 36 %el.1 = load i64, i64* %addr.1, align 8 38 %el.2 = load i64, i64* %addr.2, align 8 40 %el.3 = load i64, i64* %addr.3, align 8 42 %el.4 = load i64, i64* %addr.4, align 8 44 %el.5 = load i64, i64* %addr.5, align 8 46 %el.6 = load i64, i64* %addr.6, align 8 48 %el.7 = load i64, i64* %addr.7, align 8 50 %el.8 = load i64, i64* %addr.8, align 8 52 %el.9 = load i64, i64* %addr.9, align 8 [all …]
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | RewriteRuleElementStream.js | 14 org.antlr.runtime.tree.RewriteRuleElementStream = function(adaptor, elementDescription, el) { argument 32 if (el) { 33 if (org.antlr.lang.isArray(el)) { 35 this.elements = el; 37 this.add(el); 53 add: function(el) { argument 54 if ( !org.antlr.lang.isValue(el) ) { 58 this.elements.push(el); 62 this.singleElement = el; 69 this.elements.push(el); [all …]
|
D | RewriteRuleSubtreeStream.js | 23 el; 27 el = this._next(); 28 return this.adaptor.dupNode(el); 31 el = this._next(); 32 return el; 35 dup: function(el) { argument 36 return this.adaptor.dupTree(el);
|
/external/arm-trusted-firmware/lib/xlat_tables_v2/aarch64/ |
D | enable_mmu.S | 16 .macro _msr reg_name, el, gp_reg 17 msr \reg_name\()_el\()\el, \gp_reg 20 .macro _mrs gp_reg, reg_name, el argument 21 mrs \gp_reg, \reg_name\()_el\()\el 24 .macro tlbi_invalidate_all el argument 25 .if \el == 1 27 .elseif \el == 2 29 .elseif \el == 3 37 .macro define_mmu_enable_func el argument 38 func enable_mmu_direct_\()el\el [all …]
|
/external/llvm-project/polly/lib/External/isl/ |
D | isl_multi_no_domain_templ.c | 28 static __isl_give EL *FN(EL,drop_dims)(__isl_take EL *el, in FN() 31 return el; in FN() 41 static __isl_give isl_space *FN(EL,get_space)(__isl_keep EL *el) in FN() 43 if (!el) in FN() 46 return isl_space_params_alloc(FN(EL,get_ctx)(el), 0); in FN() 54 static __isl_give EL *FN(EL,reset_domain_space)(__isl_take EL *el, in FN() 58 return FN(EL,free)(el); in FN() 60 return el; in FN() 70 static __isl_give EL *FN(EL,align_params)(__isl_take EL *el, in FN() 74 return FN(EL,free)(el); in FN() [all …]
|
D | isl_vec.c | 29 return isl_seq_get_hash(vec->el, vec->size); in isl_vec_get_hash() 48 vec->el = vec->block.data; in isl_vec_alloc() 73 vec->el = vec->block.data; in isl_vec_extend() 111 isl_int_set(vec->el[i + extra], vec->el[i]); in isl_vec_expand() 117 isl_int_swap(vec->el[pos + i], in isl_vec_expand() 118 vec->el[pos + j]); in isl_vec_expand() 121 isl_int_set_si(vec->el[pos + i], 0); in isl_vec_expand() 137 isl_seq_clr(vec->el, size); in isl_vec_zero() 159 isl_seq_clr(vec->el + size - extra, extra); in isl_vec_zero_extend() 187 isl_seq_cpy(vec1->el + vec1->size - vec2->size, vec2->el, vec2->size); in isl_vec_concat() [all …]
|
D | isl_multi_product_templ.c | 24 EL *el; in MULTI() local 42 el = FN(FN(MULTI(BASE),get),BASE)(multi1, i); in MULTI() 43 el = FN(EL,insert_dims)(el, isl_dim_in, in1, in2); in MULTI() 44 el = FN(EL,reset_domain_space)(el, isl_space_copy(space)); in MULTI() 45 res = FN(FN(MULTI(BASE),set),BASE)(res, i, el); in MULTI() 49 el = FN(FN(MULTI(BASE),get),BASE)(multi2, i); in MULTI() 50 el = FN(EL,insert_dims)(el, isl_dim_in, 0, in1); in MULTI() 51 el = FN(EL,reset_domain_space)(el, isl_space_copy(space)); in MULTI() 52 res = FN(FN(MULTI(BASE),set),BASE)(res, out1 + i, el); in MULTI()
|
D | isl_pw_lift_templ.c | 14 __isl_take EL *el, in foreach_lifted_subset() argument 15 isl_stat (*fn)(__isl_take isl_set *set, __isl_take EL *el, in foreach_lifted_subset() 20 if (!set || !el) in foreach_lifted_subset() 30 copy = FN(EL,copy)(el); in foreach_lifted_subset() 38 FN(EL,free)(el); in foreach_lifted_subset() 43 FN(EL,free)(el); in foreach_lifted_subset() 48 isl_stat (*fn)(__isl_take isl_set *set, __isl_take EL *el, in FN() 59 EL *el; in FN() local 65 el = FN(EL,copy)(pw->p[i].FIELD); in FN() 67 if (fn(set, el, user) < 0) in FN() [all …]
|
/external/markdown/markdown/ |
D | inlinepatterns.py | 177 el = markdown.etree.Element(self.tag) 178 el.text = m.group(3) 179 return el 195 el = markdown.etree.Element(self.tag) 196 el.text = markdown.AtomicString(m.group(3).strip()) 197 return el 226 el = markdown.etree.Element("a") 227 el.text = m.group(2) 234 el.set("href", self.sanitize_url(href.strip())) 236 el.set("href", "") [all …]
|
/external/libwebsockets/lib/tls/mbedtls/ |
D | lws-genec.c | 47 struct lws_gencrypto_keyelem *el) in lws_genec_keypair_import() argument 53 if (el[LWS_GENCRYPTO_EC_KEYEL_CRV].len < 4) { in lws_genec_keypair_import() 55 el[LWS_GENCRYPTO_EC_KEYEL_CRV].buf ? in lws_genec_keypair_import() 56 (char *)el[LWS_GENCRYPTO_EC_KEYEL_CRV].buf : in lws_genec_keypair_import() 58 el[LWS_GENCRYPTO_EC_KEYEL_CRV].len); in lws_genec_keypair_import() 63 (char *)el[LWS_GENCRYPTO_EC_KEYEL_CRV].buf); in lws_genec_keypair_import() 72 if ((el[LWS_GENCRYPTO_EC_KEYEL_D].len && in lws_genec_keypair_import() 73 el[LWS_GENCRYPTO_EC_KEYEL_D].len != curve->key_bytes) || in lws_genec_keypair_import() 74 el[LWS_GENCRYPTO_EC_KEYEL_X].len != curve->key_bytes || in lws_genec_keypair_import() 75 el[LWS_GENCRYPTO_EC_KEYEL_Y].len != curve->key_bytes) in lws_genec_keypair_import() [all …]
|
/external/libvpx/libvpx/vp8/common/ |
D | extend.c | 21 int el, /* extend left border */ in copy_and_extend_plane() argument 32 dest_ptr1 = d - el; in copy_and_extend_plane() 36 memset(dest_ptr1, src_ptr1[0], el); in copy_and_extend_plane() 37 memcpy(dest_ptr1 + el, src_ptr1, w); in copy_and_extend_plane() 48 src_ptr1 = d - el; in copy_and_extend_plane() 49 src_ptr2 = d + dp * (h - 1) - el; in copy_and_extend_plane() 50 dest_ptr1 = d + dp * (-et) - el; in copy_and_extend_plane() 51 dest_ptr2 = d + dp * (h)-el; in copy_and_extend_plane() 52 linesize = el + er + w; in copy_and_extend_plane() 68 int el = dst->border; in vp8_copy_and_extend_frame() local [all …]
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | BitSet.js | 78 numWordsToHold: function(el) { argument 79 return (el >> org.antlr.runtime.BitSet.LOG_BITS) + 1; 113 of: function(el, el2) { argument 116 if (org.antlr.lang.isNumber(el)) { 119 for (i = el; i <= el2; i++) { 125 s = new org.antlr.runtime.BitSet(el + 1); 126 s.add(el); 129 } else if(org.antlr.lang.isArray(el)) { 131 for (i=el.length-1; i>=0; i--) { 132 s.add(el[i]); [all …]
|
/external/libwebsockets/lib/tls/openssl/ |
D | lws-genec.c | 96 lws_genec_eckey_import(int nid, EVP_PKEY *pkey, struct lws_gencrypto_keyelem *el) in lws_genec_eckey_import() argument 113 bn_x = BN_bin2bn(el[LWS_GENCRYPTO_EC_KEYEL_X].buf, in lws_genec_eckey_import() 114 el[LWS_GENCRYPTO_EC_KEYEL_X].len, NULL); in lws_genec_eckey_import() 119 bn_y = BN_bin2bn(el[LWS_GENCRYPTO_EC_KEYEL_Y].buf, in lws_genec_eckey_import() 120 el[LWS_GENCRYPTO_EC_KEYEL_Y].len, NULL); in lws_genec_eckey_import() 136 if (el[LWS_GENCRYPTO_EC_KEYEL_D].len) { in lws_genec_eckey_import() 137 bn_d = BN_bin2bn(el[LWS_GENCRYPTO_EC_KEYEL_D].buf, in lws_genec_eckey_import() 138 el[LWS_GENCRYPTO_EC_KEYEL_D].len, NULL); in lws_genec_eckey_import() 178 EVP_PKEY_CTX **pctx, struct lws_gencrypto_keyelem *el) in lws_genec_keypair_import() argument 183 if (el[LWS_GENCRYPTO_EC_KEYEL_CRV].len < 4) in lws_genec_keypair_import() [all …]
|
/external/adhd/cras/src/common/ |
D | utlist.h | 110 #define LL_FOREACH(head, el) for (el = head; el; el = el->next) argument 112 #define LL_FOREACH_SAFE(head, el, tmp) \ argument 113 for ((el) = (head); (el) && (tmp = (el)->next, 1); (el) = tmp) 220 #define DL_FOREACH(head, el) \ argument 221 DL_FOREACH_INTERNAL (head, el, MAKE_NAME(_dl_foreach_)) 222 #define DL_FOREACH_INTERNAL(head, el, tmp) \ argument 223 __typeof__(el) tmp; \ 224 for ((el) = (head); (el) && (tmp = (el)->next, 1); (el) = tmp)
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | RewriteRuleElementStream.java | 112 public void add(Object el) { in add() argument 114 if ( el==null ) { in add() 118 elements.add(el); in add() 122 singleElement = el; in add() 129 elements.add(el); in add() 141 Object el = _next(); in nextTree() local 142 return dup(el); in nextTree() 145 Object el = _next(); in nextTree() local 146 return el; in nextTree() 183 protected abstract Object dup(Object el); in dup() argument [all …]
|
/external/icu/icu4c/source/data/locales/ |
D | es_VE.txt | 125 "-1"{"el Vi pasado"} 127 "1"{"el próximo Vi"} 132 "-1"{"el Lu pasado"} 134 "1"{"el próximo Lu"} 139 "-1"{"el Sa pasado"} 141 "1"{"el próximo Sa"} 146 "-1"{"el Do pasado"} 148 "1"{"el próximo Do"} 153 "-1"{"el Ju pasado"} 155 "1"{"el próximo Ju"} [all …]
|
/external/e2fsprogs/e2fsck/ |
D | ea_refcount.c | 117 struct ea_refcount_el *el; in insert_refcount_el() local 144 el = &refcount->list[pos]; in insert_refcount_el() 145 el->ea_key = ea_key; in insert_refcount_el() 146 el->ea_value = 0; in insert_refcount_el() 147 return el; in insert_refcount_el() 213 struct ea_refcount_el *el; in ea_refcount_fetch() local 215 el = get_refcount_el(refcount, ea_key, 0); in ea_refcount_fetch() 216 if (!el) { in ea_refcount_fetch() 220 *ret = el->ea_value; in ea_refcount_fetch() 227 struct ea_refcount_el *el; in ea_refcount_increment() local [all …]
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | RewriteRuleElementStream.cs | 116 public virtual void Add(object el) { in Add() argument 118 if (el == null) { in Add() 122 elements.Add(el); in Add() 126 singleElement = el; in Add() 133 elements.Add(el); in Add() 147 object el = NextCore(); in NextTree() 148 return Dup(el); in NextTree() 193 protected abstract object Dup(object el); in Dup() argument 200 protected virtual object ToTree(object el) { in ToTree() argument 201 return el; in ToTree()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | RewriteRuleElementStream.cs | 119 public virtual void Add( object el ) in Add() argument 122 if ( el == null ) in Add() 128 elements.Add( el ); in Add() 133 singleElement = el; in Add() 140 elements.Add( el ); in Add() 156 object el = NextCore(); in NextTree() 157 return Dup( el ); in NextTree() 207 protected abstract object Dup( object el ); in Dup() argument 214 protected virtual object ToTree( object el ) in ToTree() argument 216 return el; in ToTree()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | BitSet.cs | 89 public static BitSet Of(int el) { in Of() argument 90 BitSet s = new BitSet(el + 1); in Of() 91 s.Add(el); in Of() 130 public void Add(int el) { in Add() argument 131 int n = WordNumber(el); in Add() 133 GrowToInclude(el); in Add() 135 _bits[n] |= BitMask(el); in Add() 230 public bool Member(int el) { in Member() argument 231 if (el < 0) { in Member() 234 int n = WordNumber(el); in Member() [all …]
|
/external/e2fsprogs/lib/et/ |
D | error_message.c | 280 struct et_list *el; in add_error_table() local 282 if (!(el = (struct et_list *) malloc(sizeof(struct et_list)))) in add_error_table() 286 free(el); in add_error_table() 290 el->table = et; in add_error_table() 291 el->next = _et_dynamic_list; in add_error_table() 292 _et_dynamic_list = el; in add_error_table() 309 struct et_list *el; in remove_error_table() local 315 el = _et_dynamic_list; in remove_error_table() 317 while (el) { in remove_error_table() 318 if (el->table->base == et->base) { in remove_error_table() [all …]
|
/external/llvm-project/lldb/utils/lui/ |
D | commandwin.py | 75 self.data, self.el.index, 0, -1, matches) 77 self.el.content += matches.GetStringAtIndex(0) 78 self.el.index = len(self.el.content) 79 self.el.draw() 81 self.win.move(self.el.starty, self.el.startx) 88 self.el.draw() 92 self.el = cui.CursesEditLine( 97 self.el.prompt = self.driver.getPrompt() 98 self.el.showPrompt(self.startline, 0) 119 self.el.showPrompt(self.startline, 0) [all …]
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | BitSet.cs | 96 public static BitSet Of( int el ) in Of() argument 98 BitSet s = new BitSet( el + 1 ); in Of() 99 s.Add( el ); in Of() 143 public void Add( int el ) in Add() argument 145 int n = WordNumber( el ); in Add() 148 GrowToInclude( el ); in Add() 150 _bits[n] |= BitMask( el ); in Add() 270 public bool Member( int el ) in Member() argument 272 if ( el < 0 ) in Member() 276 int n = WordNumber( el ); in Member() [all …]
|
/external/grpc-grpc/test/core/iomgr/ |
D | timer_heap_test.cc | 44 static int contains(grpc_timer_heap* pq, grpc_timer* el) { in contains() argument 47 if (pq->timers[i] == el) return 1; in contains() 103 grpc_timer* el = &test_elements[elem_num]; in test1() local 105 GPR_ASSERT(!contains(&pq, el)); in test1() 106 el->deadline = random_deadline(); in test1() 107 grpc_timer_heap_add(&pq, el); in test1() 108 GPR_ASSERT(contains(&pq, el)); in test1() 112 GPR_ASSERT(contains(&pq, el)); in test1() 113 grpc_timer_heap_remove(&pq, el); in test1() 114 GPR_ASSERT(!contains(&pq, el)); in test1() [all …]
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | BitSet.java | 76 public static BitSet of(int el) { in of() argument 77 BitSet s = new BitSet(el + 1); in of() 78 s.add(el); in of() 117 public void add(int el) { in add() argument 118 int n = wordNumber(el); in add() 120 growToInclude(el); in add() 122 bits[n] |= bitMask(el); in add() 232 public boolean member(int el) { in member() argument 233 if ( el<0 ) { in member() 236 int n = wordNumber(el); in member() [all …]
|