/external/python/cpython3/Lib/encodings/ |
D | mac_arabic.py | 49 0x0081: 0x00a0, # NO-BREAK SPACE, right-left 60 0x008c: 0x00ab, # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK, right-left 67 0x0093: 0x2026, # HORIZONTAL ELLIPSIS, right-left 72 0x0098: 0x00bb, # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK, right-left 75 0x009b: 0x00f7, # DIVISION SIGN, right-left 80 0x00a0: 0x0020, # SPACE, right-left 81 0x00a1: 0x0021, # EXCLAMATION MARK, right-left 82 0x00a2: 0x0022, # QUOTATION MARK, right-left 83 0x00a3: 0x0023, # NUMBER SIGN, right-left 84 0x00a4: 0x0024, # DOLLAR SIGN, right-left [all …]
|
D | mac_farsi.py | 80 ' ' # 0x20 -> SPACE, left-right 81 '!' # 0x21 -> EXCLAMATION MARK, left-right 82 '"' # 0x22 -> QUOTATION MARK, left-right 83 '#' # 0x23 -> NUMBER SIGN, left-right 84 '$' # 0x24 -> DOLLAR SIGN, left-right 85 '%' # 0x25 -> PERCENT SIGN, left-right 86 '&' # 0x26 -> AMPERSAND, left-right 87 "'" # 0x27 -> APOSTROPHE, left-right 88 '(' # 0x28 -> LEFT PARENTHESIS, left-right 89 ')' # 0x29 -> RIGHT PARENTHESIS, left-right [all …]
|
/external/python/cpython2/Lib/encodings/ |
D | mac_arabic.py | 49 0x0081: 0x00a0, # NO-BREAK SPACE, right-left 60 0x008c: 0x00ab, # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK, right-left 67 0x0093: 0x2026, # HORIZONTAL ELLIPSIS, right-left 72 0x0098: 0x00bb, # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK, right-left 75 0x009b: 0x00f7, # DIVISION SIGN, right-left 80 0x00a0: 0x0020, # SPACE, right-left 81 0x00a1: 0x0021, # EXCLAMATION MARK, right-left 82 0x00a2: 0x0022, # QUOTATION MARK, right-left 83 0x00a3: 0x0023, # NUMBER SIGN, right-left 84 0x00a4: 0x0024, # DOLLAR SIGN, right-left [all …]
|
D | mac_farsi.py | 80 u' ' # 0x20 -> SPACE, left-right 81 u'!' # 0x21 -> EXCLAMATION MARK, left-right 82 u'"' # 0x22 -> QUOTATION MARK, left-right 83 u'#' # 0x23 -> NUMBER SIGN, left-right 84 u'$' # 0x24 -> DOLLAR SIGN, left-right 85 u'%' # 0x25 -> PERCENT SIGN, left-right 86 u'&' # 0x26 -> AMPERSAND, left-right 87 u"'" # 0x27 -> APOSTROPHE, left-right 88 u'(' # 0x28 -> LEFT PARENTHESIS, left-right 89 u')' # 0x29 -> RIGHT PARENTHESIS, left-right [all …]
|
/external/grpc-grpc/src/core/lib/avl/ |
D | avl.cc | 54 unref_node(vtable, node->right, user_data); in unref_node() 67 calculate_height(node->right)); in calculate_height() 73 assert_invariants(n->right); in assert_invariants() 75 assert(labs(node_height(n->left) - node_height(n->right)) <= 1); in assert_invariants() 83 grpc_avl_node* right) { in new_node() argument 89 node->right = assert_invariants(right); in new_node() 90 node->height = 1 + GPR_MAX(node_height(left), node_height(right)); in new_node() 108 return get(vtable, node->right, key, user_data); in get() 128 grpc_avl_node* right, void* user_data) { in rotate_left() argument 129 grpc_avl_node* n = new_node(vtable->copy_key(right->key, user_data), in rotate_left() [all …]
|
/external/adhd/ucm-config/daisy/DAISY-I2S/ |
D | HiFi.conf | 26 cset "name='DMIC1 Right Capture Switch' on" 36 cset "name='Right ADC Mixer MIC1 Switch' off" 37 cset "name='Right ADC Mixer MIC2 Switch' on" 38 cset "name='Right ADC Mixer IN1 Switch' off" 39 cset "name='Right ADC Mixer IN2 Switch' off" 44 cset "name='Right Lineout Mixer Left DAC1 Switch' off" 45 cset "name='Right Lineout Mixer Right DAC1 Switch' off" 46 cset "name='Right Lineout Mixer MIC1 Switch' off" 47 cset "name='Right Lineout Mixer MIC2 Switch' off" 48 cset "name='Right Lineout Mixer IN1 Switch' off" [all …]
|
/external/pdfium/core/fxcrt/ |
D | fx_coordinates.cpp | 30 if (left > right) in Normalize() 31 std::swap(left, right); in Normalize() 42 right = std::min(right, src_n.right); in Intersect() 44 if (left > right || top > bottom) { in Intersect() 45 left = top = right = bottom = 0; in Intersect() 52 right = rect.right; in CFX_FloatRect() 75 if (left > right) in Normalize() 76 std::swap(left, right); in Normalize() 83 right = 0.0f; in Reset() 94 right = std::min(right, other.right); in Intersect() [all …]
|
/external/toybox/kconfig/ |
D | expr.c | 39 e->right.expr = e2; in expr_alloc_two() 49 e->right.sym = s2; in expr_alloc_comp() 86 e->right.sym = org->right.sym; in expr_copy() 92 e->right.expr = expr_copy(org->right.expr); in expr_copy() 121 expr_free(e->right.expr); in expr_free() 139 __expr_eliminate_eq(type, &e1->right.expr, &e2); in __expr_eliminate_eq() 144 __expr_eliminate_eq(type, &e1, &e2->right.expr); in __expr_eliminate_eq() 203 return e1->left.sym == e2->left.sym && e1->right.sym == e2->right.sym; in expr_eq() 243 e->right.expr = expr_eliminate_yn(e->right.expr); in expr_eliminate_yn() 247 expr_free(e->right.expr); in expr_eliminate_yn() [all …]
|
/external/v8/src/compiler/ |
D | machine-operator-reducer.cc | 170 if (m.right().Is(0)) return Replace(m.left().node()); // x ror 0 => x in Reduce() 173 base::bits::RotateRight32(m.left().Value(), m.right().Value())); in Reduce() 180 return ReplaceBool(m.left().Value() == m.right().Value()); in Reduce() 182 if (m.left().IsInt32Sub() && m.right().Is(0)) { // x - y == 0 => x == y in Reduce() 185 node->ReplaceInput(1, msub.right().node()); in Reduce() 195 return ReplaceBool(m.left().Value() == m.right().Value()); in Reduce() 197 if (m.left().IsInt64Sub() && m.right().Is(0)) { // x - y == 0 => x == y in Reduce() 200 node->ReplaceInput(1, msub.right().node()); in Reduce() 217 if (m.right().Is(0)) return Replace(m.right().node()); // x * 0 => 0 in Reduce() 218 if (m.right().Is(1)) return Replace(m.left().node()); // x * 1 => x in Reduce() [all …]
|
/external/adhd/ucm-config/glimmer-cheets/byt-max98090/ |
D | HiFi.conf | 9 cset "name='Left Speaker Mixer Right DAC Switch' off" 10 cset "name='Right Speaker Mixer Left DAC Switch' off" 12 cset "name='Right Speaker Mixer Right DAC Switch' on" 22 cset "name='Right ADC Mixer MIC2 Switch' on" 33 cset "name='Right Speaker Mixer Right DAC Switch' on" 35 cset "name='Speaker Right Mixer Volume' 2" 40 cset "name='Headphone Right Switch' on" 43 cset "name='HP Right Out Switch' off" 46 cset "name='Speaker Right Switch' on" 63 cset "name='Speaker Right Switch' off" [all …]
|
/external/u-boot/scripts/kconfig/ |
D | expr.c | 38 e->right.expr = e2; in expr_alloc_two() 47 e->right.sym = s2; in expr_alloc_comp() 88 e->right.sym = org->right.sym; in expr_copy() 94 e->right.expr = expr_copy(org->right.expr); in expr_copy() 127 expr_free(e->right.expr); in expr_free() 155 __expr_eliminate_eq(type, &e1->right.expr, &e2); in __expr_eliminate_eq() 160 __expr_eliminate_eq(type, &e1, &e2->right.expr); in __expr_eliminate_eq() 264 return e1->left.sym == e2->left.sym && e1->right.sym == e2->right.sym; in expr_eq() 315 e->right.expr = expr_eliminate_yn(e->right.expr); in expr_eliminate_yn() 319 expr_free(e->right.expr); in expr_eliminate_yn() [all …]
|
/external/ImageMagick/www/ |
D | color.html | 221 <th align="right">Name</th> 228 <td align="right">snow</td> 235 <td align="right">snow1</td> 242 <td align="right">snow2</td> 249 <td align="right">RosyBrown1</td> 256 <td align="right">RosyBrown2</td> 263 <td align="right">snow3</td> 270 <td align="right">LightCoral</td> 277 <td align="right">IndianRed1</td> 284 <td align="right">RosyBrown3</td> [all …]
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
D | cap_freebsd.go | 30 func capidxbit(right uint64) int { 31 return int((right >> 57) & 0x1f) 34 func rightToIndex(right uint64) (int, error) { 35 idx := capidxbit(right) 37 return -2, fmt.Errorf("index for right 0x%x out of range", right) 42 func caprver(right uint64) int { 43 return int(right >> 62) 66 for _, right := range setrights { 67 if caprver(right) != CAP_RIGHTS_VERSION_00 { 68 return errors.New("bad right version") [all …]
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | rbt.c | 44 node->parent = node->right = node->left = NULL; in rbnode_construct() 56 rbnode_destruct(node->right, d); in rbnode_destruct() 65 /* Recursively determine the depth of the left and right in rbnode_depth() 68 int irightdepth = (node->right) ? rbnode_depth(node->right) : 0; in rbnode_depth() 89 while (node->right) in rbnode_maximum() 90 node = node->right; in rbnode_maximum() 110 if (node->right) { in rbnode_successor() 112 /* If there is a right child, the successor is the in rbnode_successor() 117 succ_node = node->right; in rbnode_successor() 128 while (succ_node && prev_node == succ_node->right) { in rbnode_successor() [all …]
|
/external/v8/benchmarks/spinning-balls/ |
D | splay-tree.js | 79 node.right = this.root_.right; 80 this.root_.right = null; 82 node.right = this.root_; 108 this.root_ = this.root_.right; 110 var right = this.root_.right; 112 // Splay to make sure that the new root has an empty right child. 114 // Insert the original right child as the right child of the new 116 this.root_.right = right; 146 while (current.right) { 147 current = current.right; [all …]
|
/external/v8/tools/ |
D | splaytree.js | 81 node.right = this.root_.right; 82 this.root_.right = null; 84 node.right = this.root_; 110 this.root_ = this.root_.right; 112 var right = this.root_.right; 114 // Splay to make sure that the new root has an empty right child. 116 // Insert the original right child as the right child of the new 118 this.root_.right = right; 163 while (current.right) { 164 current = current.right; [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | ComparisonChain.java | 75 Comparable left, Comparable right) { 76 return classify(left.compareTo(right)); 79 @Nullable T left, @Nullable T right, Comparator<T> comparator) { 80 return classify(comparator.compare(left, right)); 82 @Override public ComparisonChain compare(int left, int right) { 83 return classify(Ints.compare(left, right)); 85 @Override public ComparisonChain compare(long left, long right) { 86 return classify(Longs.compare(left, right)); 88 @Override public ComparisonChain compare(float left, float right) { 89 return classify(Float.compare(left, right)); [all …]
|
/external/v8/benchmarks/ |
D | splay.js | 58 right: GeneratePayloadTree(depth - 1, tag) 97 // Verify that the splay tree has the right size. 174 node.right = this.root_.right; 175 this.root_.right = null; 177 node.right = this.root_; 203 this.root_ = this.root_.right; 205 var right = this.root_.right; 207 // Splay to make sure that the new root has an empty right child. 209 // Insert the original right child as the right child of the new 211 this.root_.right = right; [all …]
|
/external/adhd/ucm-config/daisy/DAISY-I2S-98090/ |
D | HiFi.conf | 8 cset "name='Right Speaker Mixer Right DAC Switch' on" 10 cset "name='Headphone Right Switch' on" 20 cset "name='Right ADC Mixer MIC2 Switch' off" 29 cset "name='HP Right Out Switch' off" 32 cset "name='Speaker Right Mixer Volume' 2" 50 cset "name='Right Speaker Mixer Right DAC Switch' off" 55 cset "name='Right Speaker Mixer Right DAC Switch' on" 68 cset "name='Right Speaker Mixer Right DAC Switch' off" 70 cset "name='HP Right Out Switch' on" 75 cset "name='HP Right Out Switch' off" [all …]
|
/external/e2fsprogs/lib/support/ |
D | dict.c | 58 #define right dict_right macro 84 * its right child C are rearranged so that the P instead becomes the left 85 * child of C. The left subtree of C is inherited as the new right subtree 93 lower = upper->right; in rotate_left() 94 upper->right = lowleft = lower->left; in rotate_left() 105 dict_assert (upper == upparent->right); in rotate_left() 106 upparent->right = lower; in rotate_left() 115 * the same procedure, but with left and right interchanged. 123 upper->left = lowright = lower->right; in rotate_right() 128 if (upper == upparent->right) { in rotate_right() [all …]
|
/external/f2fs-tools/fsck/ |
D | dict.c | 53 #define right dict_right macro 79 * its right child C are rearranged so that the P instead becomes the left 80 * child of C. The left subtree of C is inherited as the new right subtree 87 lower = upper->right; in rotate_left() 88 upper->right = lowleft = lower->left; in rotate_left() 99 dict_assert(upper == upparent->right); in rotate_left() 100 upparent->right = lower; in rotate_left() 109 * the same procedure, but with left and right interchanged. 116 upper->left = lowright = lower->right; in rotate_right() 121 if (upper == upparent->right) { in rotate_right() [all …]
|
/external/clang/lib/Format/ |
D | TokenAnnotator.cpp | 199 // categorize it as an unary operator, so set the right type here. in parseParens() 1165 // If there is an identifier (or with a few exceptions a keyword) right in rParenEndsCast() 1172 // Certain other tokens right before the parentheses are also signals that in rParenEndsCast() 1281 // declarations. Thus, having an identifier on the right-hand side in determineStarAmpUsage() 1802 const FormatToken &Right = Tok; in splitPenalty() local 1808 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in splitPenalty() 1810 if (Right.is(Keywords.kw_implements)) in splitPenalty() 1815 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty() 1821 if (Left.is(tok::comma) || (Right.is(tok::identifier) && Right.Next && in splitPenalty() 1822 Right.Next->is(TT_DictLiteral))) in splitPenalty() [all …]
|
/external/antlr/tool/src/main/java/org/antlr/tool/ |
D | NFAFactory.java | 86 while ( s!=alt.right ) { in optimizeAlternative() 120 NFAState right = newState(); in build_Atom() local 122 right.associatedASTNode = associatedAST; in build_Atom() 123 transitionBetweenStates(left, right, label); in build_Atom() 124 StateCluster g = new StateCluster(left, right); in build_Atom() 138 NFAState right = newState(); in build_Set() local 140 right.associatedASTNode = associatedAST; in build_Set() 142 Transition e = new Transition(label,right); in build_Set() 144 StateCluster g = new StateCluster(left, right); in build_Set() 165 NFAState right = newState(); in build_Range() local [all …]
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | cost_estimator.cc | 21 Costs CombineCosts(const Costs& left, const Costs& right) { in CombineCosts() argument 27 result.execution_time += right.execution_time; in CombineCosts() 28 result.compute_time += right.compute_time; in CombineCosts() 29 result.memory_time += right.memory_time; in CombineCosts() 30 result.intermediate_memory_time += right.intermediate_memory_time; in CombineCosts() 31 result.intermediate_memory_read_time += right.intermediate_memory_read_time; in CombineCosts() 32 result.intermediate_memory_write_time += right.intermediate_memory_write_time; in CombineCosts() 34 if (right.max_per_op_buffers != kMemoryUnknown) { in CombineCosts() 36 std::max(left.max_per_op_buffers, right.max_per_op_buffers); in CombineCosts() 38 if (right.max_per_op_streaming != kMemoryUnknown) { in CombineCosts() [all …]
|
/external/adhd/ucm-config/cyan/chtmax98090/ |
D | HiFi.conf | 40 cset "name='Right ADC Mixer MIC2 Switch' on" 51 cset "name='Right Speaker Mixer Right DAC Switch' on" 53 cset "name='Speaker Right Mixer Volume' 2" 58 cset "name='Headphone Right Switch' on" 62 cset "name='Speaker Right Switch' on" 81 cset "name='Speaker Right Switch' off" 89 cset "name='Speaker Right Switch' on" 116 Comment "Swap the left and right channels of speaker." 122 cset "name='Right Speaker Mixer Right DAC Switch' off" 123 cset "name='Left Speaker Mixer Right DAC Switch' on" [all …]
|