HomeSort by relevance Sort by last modified time
    Searched defs:right (Results 76 - 100 of 693) sorted by null

1 2 34 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
rexpr.h 19 right; member in struct:__anon6341
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
ASTBase.h 65 ASTBase *right() { return _right; } function in class:ASTBase
70 PCCTS_AST *right() { return _right; } // define the SORCERER interface function in class:ASTBase
ast.h 48 struct _ast *right, *down; member in struct:_ast
58 #define AST_REQUIRED_FIELDS struct _ast *right, *down, *left, *up;
60 #define AST_REQUIRED_FIELDS struct _ast *right, *down;
68 #define zzsibling(t) (((t)==NULL)? (AST *) NULL:(t->right)) /* MR19 */
77 #define zzSTR ( (_tail==NULL)?(&_sibling):(&(_tail->right)) )
  /external/bcc/examples/cpp/
LLCStat.cc 113 << " (" + std::string(it.first.name) + ") " << std::right; member in class:std
  /external/clang/test/CodeGen/
2002-02-14-EntryNodePreds.c 19 QUAD_EDGE left, right; member in struct:__anon16940
  /external/grpc-grpc/src/core/lib/avl/
avl.h 32 struct grpc_avl_node* right; member in struct:grpc_avl_node
  /external/libcups/cups/
pwg.h 64 right, /* Right margin in 2540ths */ member in struct:pwg_size_s
  /external/libxkbcommon/xkbcommon/src/
atom.c 77 xkb_atom_t left, right; member in struct:atom_node
147 atomp = &node->right;
156 atomp = &node->right;
217 node.left = node.right = XKB_ATOM_NONE;
  /external/ltp/testcases/kernel/mem/thp/
thp01.c 55 long right; member in struct:bisection
67 while (bst->right - bst->left > 1) {
73 * restore left and set right to mid instead.
76 bst->mid = (bst->left + bst->right) / 2;
84 bst->right = bst->mid;
89 tst_res(TINFO, "left: %ld, right: %ld, mid: %ld",
90 bst->left, bst->right, bst->mid);
93 /* We end with mid == right or mid == left where right - left =
94 * 1. Regardless we must use left because right is only set to value
    [all...]
  /external/tensorflow/tensorflow/lite/toco/
tooling_util_test.cc 33 Shape right; member in struct:toco::ShapePair
76 EXPECT_TRUE(ShapesAgreeUpToBroadcasting(param.left, param.right));
80 EXPECT_TRUE(ShapesAgreeUpToExtending(param.left, param.right));
82 EXPECT_TRUE(ShapesAgreeUpToBroadcasting(param.left, param.right));
87 EXPECT_TRUE(ShapesAgreeUpToBroadcasting(param.left, param.right));
88 EXPECT_FALSE(ShapesAgreeUpToExtending(param.left, param.right));
92 EXPECT_FALSE(ShapesAgreeUpToExtending(param.left, param.right));
93 EXPECT_FALSE(ShapesAgreeUpToBroadcasting(param.left, param.right));
  /external/v8/tools/
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 ne
327 SplayTree.Node.prototype.right = null; method in class:SplayTree.Node
    [all...]
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
volume_test.cc 248 TEST_LOG("Speak and verify that the following levels look right:\n");
274 float right = -1.0; local
276 EXPECT_EQ(0, voe_volume_control_->GetOutputVolumePan(channel_, left, right));
278 EXPECT_FLOAT_EQ(1.0, right);
290 TEST_LOG("Panning right.\n");
296 float right = 0.0f; local
298 EXPECT_EQ(0, voe_volume_control_->GetOutputVolumePan(channel_, left, right));
300 EXPECT_FLOAT_EQ(0.8f, right);
  /frameworks/av/media/libaudioprocessing/
AudioResamplerCubic.h 62 state left, right; member in class:android::AudioResamplerCubic
  /cts/tests/tests/graphics/src/android/graphics/cts/
BlurMaskFilterTest.java 71 int right = bitmap.getWidth() - 1; local
75 verifyColor(color, bitmap.getPixel(right - x, y), alphaTolerance);
77 verifyColor(color, bitmap.getPixel(right - x, bottom - y), alphaTolerance);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
transmogrify.h 85 pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, char fill)
91 if (right < 0)
92 right = 0;
94 if (left == 0 && right == 0 && STRINGLIB_CHECK_EXACT(self)) {
106 left + STRINGLIB_LEN(self) + right);
113 if (right)
115 fill, right); local
154 "Return B right justified in a string of length width. Padding is\n"
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
ast.h 48 struct _ast *right, *down; member in struct:_ast
58 #define AST_REQUIRED_FIELDS struct _ast *right, *down, *left, *up;
60 #define AST_REQUIRED_FIELDS struct _ast *right, *down;
68 #define zzsibling(t) (((t)==NULL)? (AST *) NULL:(t->right)) /* MR19 */
77 #define zzSTR ( (_tail==NULL)?(&_sibling):(&(_tail->right)) )
  /device/linaro/hikey/hifi/xaf/hifi-dpf/include/lib/
rbtree.h 44 rb_idx_t parent, left, right; member in struct:rb_node
69 /* ...right child accessor */
72 return n_idx->right;
111 /* ...right child assignment */
114 n_idx->right = child;
120 tree->root.right = c_idx;
  /external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
publish.cpp 107 auto right = map_to_int.map([](long v) { return v * 100; }); variable
109 auto merge = left.merge(right);
135 // Ensure left,right is interleaved without being biased towards one side.
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
XYSeriesRendererTest.java 63 final float right = 104; local
  /external/blktrace/
rbtree.c 27 struct rb_node *right = node->rb_right; local
30 if ((node->rb_right = right->rb_left))
31 rb_set_parent(right->rb_left, node);
32 right->rb_left = node;
34 rb_set_parent(right, parent);
39 parent->rb_left = right;
41 parent->rb_right = right;
44 root->rb_node = right;
45 rb_set_parent(node, right);
323 /* If we have a right-hand child, go down and then left as fa
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyLogical.h 65 const LExpr *right() const { return RHS; } function in class:clang::threadSafety::lexpr::BinOp
66 LExpr *right() { return RHS; } function in class:clang::threadSafety::lexpr::BinOp
  /external/clang/test/CodeGenCXX/
empty-classes.cpp 93 float right; member in struct:rdar20621065::B
microsoft-abi-multiple-nonvirtual-inheritance.cpp 7 struct Right {
8 virtual void right();
11 struct ChildNoOverride : Left, Right {
14 struct ChildOverride : Left, Right {
16 virtual void right();
68 child->right();
69 // When calling a right base's virtual method, one needs to adjust 'this' at
74 // CHECK: %[[RIGHT:.*]] = bitcast i8* %[[RIGHT_i8]] to %struct.Right*
76 // CHECK: %[[VFPTR:.*]] = bitcast %struct.Right* %[[RIGHT]] to void (%struct.Right*)**
84 void ChildOverride::right() { function in class:ChildOverride
129 void GrandchildOverride::right() { function in class:GrandchildOverride
    [all...]
  /external/clang/test/CodeGenObjC/Inputs/
nsvalue-boxed-expressions-support.h 51 CGFloat right; member in struct:NSEdgeInsets
  /external/deqp/external/openglcts/modules/glesext/geometry_shader/
esextcGeometryShaderOutput.cpp 555 const unsigned int right = width - 1; local
562 (true == comparePixel(result_image, right, top, width, height, pixel_size, 255, 255, 255, 255)) &&
563 (true == comparePixel(result_image, right, bottom, width, height, pixel_size, 0, 0, 0, 0)))
622 const unsigned int right = width - 1; local
629 (true == comparePixel(result_image, right, top, width, height, pixel_size, 0, 0, 0, 0)) &&
630 (true == comparePixel(result_image, right, bottom, width, height, pixel_size, 0, 0, 0, 0)))

Completed in 1691 milliseconds

1 2 34 5 6 7 8 91011>>