Searched defs:left (Results 101 - 125 of 1217) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-02-14-EntryNodePreds.c19 QUAD_EDGE left, right; member in struct:__anon18516
/external/guava/guava/src/com/google/common/collect/
H A DCompoundOrdering.java46 @Override public int compare(T left, T right) { argument
48 int result = comparator.compare(left, right);
H A DExplicitOrdering.java39 @Override public int compare(T left, T right) { argument
40 return rank(left) - rank(right); // safe because both are nonnegative
H A DNaturalOrdering.java34 @Override public int compare(Comparable left, Comparable right) { argument
35 checkNotNull(left); // for GWT
37 if (left == right) {
41 return left.compareTo(right);
H A DNullsFirstOrdering.java34 @Override public int compare(@Nullable T left, @Nullable T right) { argument
35 if (left == right) {
38 if (left == null) {
44 return ordering.compare(left, right);
H A DNullsLastOrdering.java34 @Override public int compare(@Nullable T left, @Nullable T right) { argument
35 if (left == right) {
38 if (left == null) {
44 return ordering.compare(left, right);
/external/guava/guava/src/com/google/common/io/
H A DLimitInputStream.java35 private long left; field in class:LimitInputStream
48 left = limit;
52 return (int) Math.min(in.available(), left);
57 mark = left;
62 if (left == 0) {
68 --left;
74 if (left == 0) {
78 len = (int) Math.min(len, left);
81 left -= result;
95 left
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_common_data.c141 PARTITION_CONTEXT left; member in struct:__anon24900
/external/skia/src/pathops/
H A DSkPathOpsBounds.h25 void add(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) { argument
26 if (left < fLeft) fLeft = left;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-omac1.c48 size_t i, e, left, total_len; local
58 left = total_len;
64 while (left >= AES_BLOCK_SIZE) {
73 if (left > AES_BLOCK_SIZE)
75 left -= AES_BLOCK_SIZE;
82 if (left || total_len == 0) {
83 for (i = 0; i < left; i++) {
91 cbc[left] ^= 0x80;
/external/wpa_supplicant_8/src/crypto/
H A Daes-omac1.c48 size_t i, e, left, total_len; local
58 left = total_len;
64 while (left >= AES_BLOCK_SIZE) {
73 if (left > AES_BLOCK_SIZE)
75 left -= AES_BLOCK_SIZE;
82 if (left || total_len == 0) {
83 for (i = 0; i < left; i++) {
91 cbc[left] ^= 0x80;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-omac1.c48 size_t i, e, left, total_len; local
58 left = total_len;
64 while (left >= AES_BLOCK_SIZE) {
73 if (left > AES_BLOCK_SIZE)
75 left -= AES_BLOCK_SIZE;
82 if (left || total_len == 0) {
83 for (i = 0; i < left; i++) {
91 cbc[left] ^= 0x80;
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DPlanarYUVLuminanceSource.java38 private final int left; field in class:PlanarYUVLuminanceSource
41 public PlanarYUVLuminanceSource(byte[] yuvData, int dataWidth, int dataHeight, int left, int top, argument
45 if (left + width > dataWidth || top + height > dataHeight) {
52 this.left = left;
68 int offset = (y + top) * dataWidth + left;
86 int inputOffset = top * dataWidth + left;
114 int inputOffset = top * dataWidth + left;
132 for (int y = 0, rowStart = top * dataWidth + left; y < height; y++, rowStart += dataWidth) {
/external/android-clat/
H A Dchecksum.c37 int left = len; local
40 while(left > 1) {
43 left -= 2;
45 if(left) {
/external/blktrace/
H A Drbtree.c50 struct rb_node *left = node->rb_left; local
53 if ((node->rb_left = left->rb_right))
54 rb_set_parent(left->rb_right, node);
55 left->rb_right = node;
57 rb_set_parent(left, parent);
62 parent->rb_right = left;
64 parent->rb_left = left;
67 root->rb_node = left;
68 rb_set_parent(node, left);
233 struct rb_node *old = node, *left; local
[all...]
/external/chromium_org/cc/output/
H A Dfilter_operations_unittest.cc17 int top, right, bottom, left; local
18 top = right = bottom = left = 0;
19 ops.GetOutsets(&top, &right, &bottom, &left);
23 EXPECT_EQ(57, left);
29 int top, right, bottom, left; local
30 top = right = bottom = left = 0;
31 ops.GetOutsets(&top, &right, &bottom, &left);
35 EXPECT_EQ(54, left);
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_backend_test_util.cc22 void ExpectEquivalentDetails(const FileDetails& left, argument
25 for (int i = 0; i < left.parent_folder_ids_size(); ++i)
26 EXPECT_TRUE(parents.insert(left.parent_folder_ids(i)).second);
29 EXPECT_EQ(1u, parents.erase(left.parent_folder_ids(i)));
32 EXPECT_EQ(left.title(), right.title());
33 EXPECT_EQ(left.file_kind(), right.file_kind());
34 EXPECT_EQ(left.md5(), right.md5());
35 EXPECT_EQ(left.etag(), right.etag());
36 EXPECT_EQ(left.creation_time(), right.creation_time());
37 EXPECT_EQ(left
42 ExpectEquivalentMetadata(const FileMetadata& left, const FileMetadata& right) argument
48 ExpectEquivalentTrackers(const FileTracker& left, const FileTracker& right) argument
[all...]
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_positioner.cc26 void AppListPositioner::WorkAreaInset(int left, argument
31 work_area.Inset(left, top, right, bottom);
151 // Note: On Windows 8 the work area won't include split windows on the left or
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DInputMethodManagerWrapper.java79 public void updateCursor(View view, int left, int top, int right, int bottom) { argument
82 getInputMethodManager().updateCursor(view, left, top, right, bottom);
/external/chromium_org/mojo/public/cpp/bindings/tests/
H A Dtype_conversion_unittest.cc13 int32_t left; member in struct:mojo::__anon8784::RedmondRect
47 rect->x = input.left;
49 rect->width = input.right - input.left;
59 rect.left = input->x;
139 EXPECT_EQ(10, rr.left);
166 rr.left += static_cast<int32_t>(i);
186 rect.left += static_cast<int32_t>(i);
199 EXPECT_EQ(redmond_region.rects[i].left, redmond_region2.rects[i].left);
/external/chromium_org/pdf/pdfium/
H A Dpdfium_range.cc50 double left, top, right, bottom; local
51 FPDFText_GetRect(page_->GetTextPage(), i, &left, &top, &right, &bottom);
53 page_->PageToScreen(offset, zoom, left, top, right, bottom, rotation));
/external/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc15 void FillRect(pp::ImageData* image, int left, int top, int width, int height, argument
20 for (int x = std::max(0, left);
21 x < std::min(image->size().width() - 1, left + width);
/external/chromium_org/printing/
H A Dpage_setup.h28 int left; member in class:printing::PageMargins
/external/chromium_org/remoting/host/
H A Dchromoting_param_traits.cc65 m->WriteInt(p.left());
75 int left, right, top, bottom; local
76 if (!m->ReadInt(iter, &left) || !m->ReadInt(iter, &top) ||
80 *r = webrtc::DesktopRect::MakeLTRB(left, top, right, bottom);
88 p.left(), p.top(), p.right(), p.bottom()));
/external/chromium_org/sync/internal_api/
H A Dsyncapi_internal.cc79 const sync_pb::EntitySpecifics& left,
84 if (left.has_encrypted()) {
85 if (!cryptographer->CanDecrypt(left.encrypted())) {
89 left_plaintext = cryptographer->DecryptToString(left.encrypted());
91 left_plaintext = left.SerializeAsString();
108 bool AreAttachmentMetadataEqual(const sync_pb::AttachmentMetadata& left, argument
110 if (left.SerializeAsString() == right.SerializeAsString()) {
78 AreSpecificsEqual(const Cryptographer* cryptographer, const sync_pb::EntitySpecifics& left, const sync_pb::EntitySpecifics& right) argument

Completed in 509 milliseconds

1234567891011>>