Searched defs:left (Results 51 - 75 of 1123) sorted by relevance

1234567891011>>

/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/skia/src/sksl/ir/
H A DSkSLBinaryExpression.h22 BinaryExpression(Position position, std::unique_ptr<Expression> left, Token::Kind op, argument
25 , fLeft(std::move(left))
/external/skia/tools/
H A Dimgslice.cpp85 int top, bottom, left, right; local
91 FLAGS_min = left = SkTPin(FLAGS_min, 0, bitmap.width()-1);
92 FLAGS_max = right = SkTPin(FLAGS_max, left, bitmap.width()-1);
95 left = right = SkTPin(FLAGS_column, 0, bitmap.width()-1);
117 for (int x = right; x >= left; --x) {
125 for (int x = left; x <= right; ++x) {
/external/smali/util/src/main/java/org/jf/util/
H A DTwoColumnOutput.java42 * output writers, one of which ends up writing to the left column and
49 /** &gt; 0; the left column width */
60 * @param leftWidth &gt; 0; width of the left column, in characters
85 * @param leftWidth &gt;= 1; width of the left column, in characters
96 public void write(String left, String right) throws IOException { argument
97 leftLines = StringWrapper.wrapString(left, leftWidth, leftLines);
/external/syslinux/gpxe/src/include/gpxe/
H A Dfilter.h58 * @v left "Left" half of the filter
59 * @v left_op Data transfer interface operations for "left" half
64 static inline void filter_init ( struct xfer_filter_half *left, argument
69 xfer_init ( &left->xfer, left_op, refcnt );
71 left->other = right;
72 right->other = left;
/external/toybox/toys/lsb/
H A Dseq.c63 int len, dot, left = 0, right = 0; local
71 if (left<dot) left = dot;
74 } else if (len>left) left = len;
77 sprintf(fmt_str = toybuf, "%%0%d.%df", left+right+!!right, right);
/external/toybox/toys/pending/
H A Dvi.c29 long top, left; member in struct:linestack_show
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Daudio_sink.h47 AudioSinkFork(AudioSink* left, AudioSink* right) argument
48 : left_sink_(left), right_sink_(right) {}
/external/webrtc/webrtc/modules/desktop_capture/win/
H A Dcursor_unittest.cc24 // Loads |left| from resources, converts it to a |MouseCursor| instance and
27 bool ConvertToMouseShapeAndCompare(unsigned left, unsigned right) { argument
30 // Load |left| from the EXE module's resources.
32 LoadImage(instance, MAKEINTRESOURCE(left), IMAGE_CURSOR, 0, 0, 0)));
/external/webrtc/webrtc/modules/utility/source/
H A Daudio_frame_operations.cc77 int AudioFrameOperations::Scale(float left, float right, AudioFrame& frame) { argument
84 static_cast<int16_t>(left * frame.data_[2 * i]);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-ctr.c29 size_t j, len, left = data_len; local
39 while (left > 0) {
42 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
46 left -= len;
/external/wpa_supplicant_8/src/crypto/
H A Daes-ctr.c29 size_t j, len, left = data_len; local
39 while (left > 0) {
42 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
46 left -= len;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-ctr.c29 size_t j, len, left = data_len; local
39 while (left > 0) {
42 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
46 left -= len;
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
H A DMockRectF.java26 //public float left;
40 it.left = rhs.left;
47 public void $init(float left, float top, float right, float bottom) { argument
48 it.left = left;
61 it.left = it.left + dx;
69 public void offsetTo(float left, float top) { argument
71 it.right = left
[all...]
/external/brotli/enc/
H A Dentropy_encode.h27 int16_t left, int16_t right) {
29 self->index_left_ = left;
26 InitHuffmanTree(HuffmanTree* self, uint32_t count, int16_t left, int16_t right) argument
/external/clang/test/CodeGen/
H A D2002-02-14-EntryNodePreds.c19 QUAD_EDGE left, right; member in struct:__anon2053
/external/curl/lib/
H A Dversion.c83 size_t left = sizeof(version); local
90 left -= len;
93 if(left > 1) {
94 len = Curl_ssl_version(ptr + 1, left - 1);
98 left -= ++len;
104 len = snprintf(ptr, left, " zlib/%s", zlibVersion());
105 left -= len;
110 len = snprintf(ptr, left, " c-ares/%s", ares_version(NULL));
111 left -= len;
116 len = snprintf(ptr, left, " libidn
[all...]
/external/fio/engines/
H A Dglusterfs.c175 unsigned long long left; local
183 left = f->real_file_size;
184 while (left && !td->terminate) {
186 if (bs > left)
187 bs = left;
198 left -= r;
/external/guava/guava/src/com/google/common/collect/
H A DComparisonChain.java75 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, righ
118 compare( @ullable Comparable left, @Nullable Comparable right) argument
122 compare(@ullable T left, @Nullable T right, @Nullable Comparator<T> comparator) argument
126 compare(int left, int right) argument
129 compare(long left, long right) argument
132 compare(float left, float right) argument
135 compare(double left, double right) argument
138 compareTrueFirst(boolean left, boolean right) argument
141 compareFalseFirst(boolean left, boolean right) argument
154 compare( Comparable<?> left, Comparable<?> right) argument
161 compare( @ullable T left, @Nullable T right, Comparator<T> comparator) argument
169 compare(int left, int right) argument
176 compare(long left, long right) argument
183 compare(float left, float right) argument
190 compare(double left, double right) argument
199 compareTrueFirst(boolean left, boolean right) argument
208 compareFalseFirst(boolean left, boolean right) argument
[all...]
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 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/libcups/cups/
H A Dpwg.h62 left, /* Left margin in 2540ths */ member in struct:pwg_size_s
/external/libvpx/libvpx/vp9/common/
H A Dvp9_common_data.c229 PARTITION_CONTEXT left; member in struct:__anon11994
/external/openssh/openbsd-compat/
H A Drealpath.c58 * in which case the path which caused trouble is left in (resolved).
68 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
92 left_len = strlcpy(left, path + 1, sizeof(left));
102 left_len = strlcpy(left, path, sizeof(left));
104 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
110 * Iterate over path components in `left'.
114 * Extract the next path component and adjust `left'
117 p = strchr(left, '/');
[all...]

Completed in 8859 milliseconds

1234567891011>>