HomeSort by relevance Sort by last modified time
    Searched full:right (Results 376 - 400 of 21084) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/compress/bzip2/
huffman.go 19 // A huffmanNode is a node in the tree. left and right contain indexes into the
20 // nodes slice of the tree. If left or right is invalidNodeValue then the child
27 left, right uint16
53 // right
54 if node.right == invalidNodeValue {
57 nodeIndex = node.right
180 // We have to search the list of codes to find the divide between the left and right sides.
190 right := codes[firstRightIndex:]
192 if len(left) == 0 || len(right) == 0 {
221 return buildHuffmanNode(t, right, level+1
    [all...]
  /prebuilts/go/linux-x86/src/compress/bzip2/
huffman.go 19 // A huffmanNode is a node in the tree. left and right contain indexes into the
20 // nodes slice of the tree. If left or right is invalidNodeValue then the child
27 left, right uint16
53 // right
54 if node.right == invalidNodeValue {
57 nodeIndex = node.right
180 // We have to search the list of codes to find the divide between the left and right sides.
190 right := codes[firstRightIndex:]
192 if len(left) == 0 || len(right) == 0 {
221 return buildHuffmanNode(t, right, level+1
    [all...]
  /external/v8/src/compiler/ppc/
instruction-selector-ppc.cc 130 inputs[input_count++] = g.UseOperand(m.right().node(), operand_mode);
405 // Map instruction to equivalent operation with inverted right input.
421 if (mleft.right().Is(-1)) {
423 g.UseRegister(m->right().node()),
430 if ((m->right().IsWord32Xor() || m->right().IsWord64Xor()) &&
432 Matcher mright(m->right().node());
433 if (mright.right().Is(-1)) {
434 // TODO(all): support shifted operand on right.
472 // TODO(mbrandy): Absorb rotate-right into rlwinm
1307 Node* right = node->InputAt(1); local
1345 Node* right = node->InputAt(1); local
1356 Node* right = node->InputAt(1); local
1726 Node* right = node->InputAt(1); local
1742 Node* right = node->InputAt(1); local
    [all...]
  /external/v8/src/compiler/mips64/
instruction-selector-mips64.cc 105 inputs[input_count++] = g.UseOperand(m.right().node(), opcode);
268 m.right().HasValue()) {
269 uint32_t mask = m.right().Value();
279 if (mleft.right().HasValue()) {
281 uint32_t lsb = mleft.right().Value() & 0x1f;
297 if (m.right().HasValue()) {
298 uint32_t mask = m.right().Value();
318 m.right().HasValue()) {
319 uint64_t mask = m.right().Value();
329 if (mleft.right().HasValue())
642 Node* right = node->InputAt(1); local
710 Node* right = node->InputAt(1); local
741 Node* right = node->InputAt(1); local
1433 Node* right = node->InputAt(1); local
1831 Node* right = node->InputAt(1); local
1840 Node* right = node->InputAt(1); local
    [all...]
  /frameworks/base/core/java/android/view/
WindowInsets.java 147 * Returns the right system window inset in pixels.
153 * @return The right system window inset
156 return mSystemWindowInsets.right;
201 * Returns the right window decor inset in pixels.
207 * @return The right window decor inset
211 return mWindowDecorInsets.right;
239 mSystemWindowInsets.right != 0 || mSystemWindowInsets.bottom != 0;
254 mWindowDecorInsets.right != 0 || mWindowDecorInsets.bottom != 0;
286 * <p>A round window's left, top, right and bottom edges reach all the way to the
314 * @param right true to consume the right system window inse
    [all...]
  /cts/tests/camera/src/android/hardware/cts/helpers/
CameraUtils.java 56 long right = widthB * (long) heightB; local
57 if (left == right) {
59 right = widthB;
61 return (left < right) ? -1 : (left > right ? 1 : 0);
  /development/samples/ApiDemos/res/layout/
table_layout_9.xml 35 android:gravity="right"
45 android:gravity="right"
55 android:gravity="right"
65 android:gravity="right"
81 android:gravity="right"
  /external/chromium-trace/catapult/devil/devil/utils/
geometry.py 30 """Multiplication on the right is not implemented."""
32 # on the right, which does not make sense for a Point.
47 bottom_right: A pair (right, bottom) coordinates.
73 'bottom': 1, 'right': 1}.
75 return cls(Point(d['left'], d['top']), Point(d['right'], d['bottom']))
  /external/guava/guava/src/com/google/common/collect/
NullsFirstOrdering.java 34 @Override public int compare(@Nullable T left, @Nullable T right) {
35 if (left == right) {
41 if (right == null) {
44 return ordering.compare(left, right);
52 @SuppressWarnings("unchecked") // still need the right way to explain this
NullsLastOrdering.java 34 @Override public int compare(@Nullable T left, @Nullable T right) {
35 if (left == right) {
41 if (right == null) {
44 return ordering.compare(left, right);
56 @SuppressWarnings("unchecked") // still need the right way to explain this
ReverseNaturalOrdering.java 28 @SuppressWarnings("unchecked") // TODO(kevinb): the right way to explain this??
33 @Override public int compare(Comparable left, Comparable right) {
34 checkNotNull(left); // right null is caught later
35 if (left == right) {
39 return right.compareTo(left);
  /external/icu/icu4c/source/i18n/
tztrans.cpp 55 TimeZoneTransition::operator=(const TimeZoneTransition& right) {
56 if (this != &right) {
57 fTime = right.fTime;
58 setFrom(*right.fFrom);
59 setTo(*right.fTo);
  /external/libvterm/src/encoding/
DECdrawing.tbl 11 6/10 = U+2518 # BOX DRAWINGS LIGHT UP AND LEFT (bottom-right corner)
12 6/11 = U+2510 # BOX DRAWINGS LIGHT DOWN AND LEFT (top-right corner)
13 6/12 = U+250C # BOX DRAWINGS LIGHT DOWN AND RIGHT (top-left corner)
14 6/13 = U+2514 # BOX DRAWINGS LIGHT UP AND RIGHT (bottom-left corner)
21 7/4 = U+251C # BOX DRAWINGS LIGHT VERTICAL AND RIGHT
  /external/llvm/include/llvm/IR/
AssemblyAnnotationWriter.h 32 /// emitFunctionAnnot - This may be implemented to emit a string right before
37 /// emitBasicBlockStartAnnot - This may be implemented to emit a string right
44 /// emitBasicBlockEndAnnot - This may be implemented to emit a string right
50 /// emitInstructionAnnot - This may be implemented to emit a string right
56 /// right of an instruction or global value.
  /external/opencv3/modules/calib3d/perf/opencl/
perf_stereobm.cpp 57 UMat left, right, disp; local
60 imread(getDataPath("gpu/stereobm/aloe-R.png"), IMREAD_GRAYSCALE).copyTo(right);
62 ASSERT_FALSE(right.empty());
64 declare.in(left, right);
70 OCL_TEST_CYCLE() bm->compute(left, right, disp);
  /external/opencv3/samples/gpu/
stereo_match.cpp 22 string right; member in struct:Params
66 Mat left, right; member in struct:App
80 << "\t--left <left_view> --right <right_view> # must be rectified\n"
123 else if (string(argv[i]) == "--right") p.right = argv[++i];
164 right_src = imread(p.right);
166 if (right_src.empty()) throw runtime_error("can't open file \"" + p.right + "\"");
168 cvtColor(right_src, right, COLOR_BGR2GRAY);
170 d_right.upload(right);
173 imshow("right", right)
    [all...]
  /external/skia/src/gpu/vk/
GrVkRenderPass.h 30 bool operator==(const AttachmentDesc& right) const {
31 return (fFormat == right.fFormat && fSamples == right.fSamples);
33 bool operator!=(const AttachmentDesc& right) const {
34 return !(*this == right);
  /external/webrtc/webrtc/modules/video_render/
i_video_render.h 43 const float right,
54 float& right,
96 const float right,
103 const float right,
123 const float right,
  /external/webrtc/webrtc/modules/video_render/linux/
video_render_linux_impl.h 49 const float right, const float bottom);
58 float& right, float& bottom) const;
94 const float right, const float bottom);
101 const float right, const float bottom);
115 const float right, const float bottom);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/focus/
ListButtonsDiagonalAcrossItemsTest.java 31 * make sure going right and left doesn't change selection
67 assertTrue("center left of right",
71 assertEquals("focus search right from left button should be center button",
74 assertEquals("focus search right from center button should be right button",
  /frameworks/base/docs/html-intl/intl/ja/preview/
samples.jd 19 <img src="{@docRoot}preview/images/sample-multiwindow.png" style="float: left; padding-right: 0.5em" height="250" width="156" />
31 <img src="{@docRoot}preview/images/sample-activenotifications.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
48 <img src="{@docRoot}preview/images/sample-messagingservice.png" style="float: left; padding-right: 0.5em" height="250" width="150" />
65 <img src="{@docRoot}preview/images/sample-directboot.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
77 <img src="{@docRoot}preview/images/sample-scopeddirectoryaccess.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
  /frameworks/base/docs/html-intl/intl/ko/preview/
samples.jd 19 <img src="{@docRoot}preview/images/sample-multiwindow.png" style="float: left; padding-right: 0.5em" height="250" width="156" />
31 <img src="{@docRoot}preview/images/sample-activenotifications.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
48 <img src="{@docRoot}preview/images/sample-messagingservice.png" style="float: left; padding-right: 0.5em" height="250" width="150" />
65 <img src="{@docRoot}preview/images/sample-directboot.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
77 <img src="{@docRoot}preview/images/sample-scopeddirectoryaccess.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
  /frameworks/base/docs/html-intl/intl/ru/preview/
samples.jd 19 <img src="{@docRoot}preview/images/sample-multiwindow.png" style="float: left; padding-right: 0.5em" height="250" width="156" />
31 <img src="{@docRoot}preview/images/sample-activenotifications.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
48 <img src="{@docRoot}preview/images/sample-messagingservice.png" style="float: left; padding-right: 0.5em" height="250" width="150" />
65 <img src="{@docRoot}preview/images/sample-directboot.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
77 <img src="{@docRoot}preview/images/sample-scopeddirectoryaccess.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
  /frameworks/base/docs/html-intl/intl/zh-cn/preview/
samples.jd 19 <img src="{@docRoot}preview/images/sample-multiwindow.png" style="float: left; padding-right: 0.5em" height="250" width="156" />
31 <img src="{@docRoot}preview/images/sample-activenotifications.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
48 <img src="{@docRoot}preview/images/sample-messagingservice.png" style="float: left; padding-right: 0.5em" height="250" width="150" />
65 <img src="{@docRoot}preview/images/sample-directboot.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
77 <img src="{@docRoot}preview/images/sample-scopeddirectoryaccess.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
  /frameworks/base/docs/html-intl/intl/zh-tw/preview/
samples.jd 19 <img src="{@docRoot}preview/images/sample-multiwindow.png" style="float: left; padding-right: 0.5em" height="250" width="156" />
31 <img src="{@docRoot}preview/images/sample-activenotifications.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
48 <img src="{@docRoot}preview/images/sample-messagingservice.png" style="float: left; padding-right: 0.5em" height="250" width="150" />
65 <img src="{@docRoot}preview/images/sample-directboot.png" style="float: left; padding-right: 0.5em" height="250" width="141" />
77 <img src="{@docRoot}preview/images/sample-scopeddirectoryaccess.png" style="float: left; padding-right: 0.5em" height="250" width="141" />

Completed in 1370 milliseconds

<<11121314151617181920>>