Searched refs:left (Results 76 - 100 of 1423) sorted by relevance

1234567891011>>

/external/zlib/src/examples/
H A Denough.c120 left: number of available bit patterns at length len
126 left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6)
129 syms == 2 is not saved since that immediately leads to a single code. left
132 left ends at syms-1 since left == syms immediately results in a single code.
133 (left > sym is not allowed since that would result in an incomplete code.)
151 to the num[] array as described above for the (syms, left, len) triplet.
199 len through max inclusive, coding syms symbols, with left bit patterns of
203 local big_t count(int syms, int len, int left) argument
213 if (syms == left)
258 beenhere(int syms, int len, int left, int mem, int rem) argument
322 examine(int syms, int len, int left, int mem, int rem) argument
406 int left; /* number of unused bit patterns at this length */ local
[all...]
H A Dgzjoin.c81 unsigned left; /* bytes remaining at next */ member in struct:__anon17875
113 in->left = 0;
127 if (in->left != 0)
131 len = (long)read(in->fd, in->buf + in->left, CHUNK - in->left);
134 in->left += (unsigned)len;
135 } while (len != 0 && in->left < CHUNK);
140 #define bget(in) (in->left ? 0 : bload(in), \
141 in->left ? (in->left
176 unsigned left; local
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DNFAFactory.java85 NFAState s = alt.left;
119 NFAState left = newState();
121 left.associatedASTNode = associatedAST;
123 transitionBetweenStates(left, right, label);
124 StateCluster g = new StateCluster(left, right);
134 * what an alt block looks like, must have extra state on left.
137 NFAState left = newState();
139 left.associatedASTNode = associatedAST;
143 left.addTransition(e);
144 StateCluster g = new StateCluster(left, righ
[all...]
/external/libvpx/libvpx/vpx_dsp/mips/
H A Dintrapred8_dspr2.c15 const uint8_t *above, const uint8_t *left) {
19 "lb %[tmp1], (%[left]) \n\t"
20 "lb %[tmp2], 1(%[left]) \n\t"
21 "lb %[tmp3], 2(%[left]) \n\t"
22 "lb %[tmp4], 3(%[left]) \n\t"
23 "lb %[tmp5], 4(%[left]) \n\t"
24 "lb %[tmp6], 5(%[left]) \n\t"
25 "lb %[tmp7], 6(%[left]) \n\t"
26 "lb %[tmp8], 7(%[left]) \n\t"
65 : [left] "
14 vpx_h_predictor_8x8_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
70 vpx_dc_predictor_8x8_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
153 vpx_tm_predictor_8x8_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
[all...]
/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/icu/icu4c/source/common/
H A Duarrsort.c38 uprv_uint16Comparator(const void *context, const void *left, const void *right) { argument
39 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right;
43 uprv_int32Comparator(const void *context, const void *left, const void *right) { argument
44 return *(const int32_t *)left - *(const int32_t *)right;
48 uprv_uint32Comparator(const void *context, const void *left, const void *right) { argument
49 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right;
171 int32_t left, right; local
173 /* start and left are inclusive, limit and right are exclusive */
180 left=start;
187 while(/* array[left]<
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_treewriter.c37 unsigned int left, right; local
40 left = num_events[-tree[i]];
42 left = convert_distribution(tree[i], tree, branch_ct, num_events);
49 branch_ct[i >> 1][0] = left;
51 return left + right;
/external/lzma/CPP/Common/
H A DMyVector.h81 int FindInSorted(const T& item, int left, int right) const argument
83 while (left != right)
85 int mid = (left + right) / 2;
92 left = mid + 1;
99 int left = 0, right = Size(); local
100 while (left != right)
102 int mid = (left + right) / 2;
109 left = mid + 1;
116 int left = 0, right = Size(); local
117 while (left !
223 int left = 0, right = Size(); local
239 int left = 0, right = Size(); local
[all...]
/external/pdfium/public/
H A Dfpdf_transformpage.h22 * @param[in] left - The left of the rectangle.
28 DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, float bottom, float right, float top);
33 * @param[in] left - The left of the rectangle.
39 DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, float left, float bottom, float right, float top);
44 * @param[in] left - Pointer to a double value receiving the left of the rectangle.
50 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top);
54 * @param[in] left
[all...]
/external/skia/tools/lua/
H A Dskia.lua20 Sk.Rect = { left = 0, top = 0, right = 0, bottom = 0 }
27 rect = { left = l, top = t, right = r, bottom = b }
40 return self.right - self.left
52 local value = self.left * 0
60 self.left = 0
67 self.left = l
76 self.left = self.left + dx
85 self.left = self.left
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha1-pbkdf2.c77 size_t left = buflen, plen; local
80 while (left > 0) {
85 plen = left > SHA1_MAC_LEN ? SHA1_MAC_LEN : left;
88 left -= plen;
/external/wpa_supplicant_8/src/crypto/
H A Dsha1-pbkdf2.c77 size_t left = buflen, plen; local
80 while (left > 0) {
85 plen = left > SHA1_MAC_LEN ? SHA1_MAC_LEN : left;
88 left -= plen;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha1-pbkdf2.c77 size_t left = buflen, plen; local
80 while (left > 0) {
85 plen = left > SHA1_MAC_LEN ? SHA1_MAC_LEN : left;
88 left -= plen;
/external/guava/guava/src/com/google/common/collect/
H A DNaturalOrdering.java32 @Override public int compare(Comparable left, Comparable right) { argument
33 checkNotNull(left); // for GWT
35 return left.compareTo(right);
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_coords.cpp11 if (left > right) {
12 int temp = left;
13 left = right;
27 left = left > src_n.left ? left : src_n.left;
31 if (left > right || top > bottom) {
32 left
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DBoxModel.java63 return new RectF( boundsRect.left + getMarginLeft(),
75 return new RectF(marginRect.left + getPaddingLeft(),
82 public void setMargins(float left, float top, float right, float bottom) { argument
83 setMarginLeft(left);
90 public void setPadding(float left, float top, float right, float bottom) { argument
91 setPaddingLeft(left);
H A DBoxModelable.java42 public void setMargins(float left, float top, float right, float bottom); argument
44 public void setPadding(float left, float top, float right, float bottom); argument
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DDiv.java38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() / right.num());
H A DMinus.java38 * @param left non-null reference to the evaluated left operand.
46 public XObject operate(XObject left, XObject right) argument
49 return new XNumber(left.num() - right.num());
H A DMod.java38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() % right.num());
H A DMult.java38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() * right.num());
H A DPlus.java38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() + right.num());
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMarginLayoutParams.java20 public void setMargins(int left, int top, int right, int bottom) { argument
21 realMarginLayoutParams.leftMargin = left;
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DRopeByteString.java115 private final ByteString left; field in class:RopeByteString
124 * @param left string on the left of this node, should have {@code size() >
129 private RopeByteString(ByteString left, ByteString right) { argument
130 this.left = left;
132 leftLength = left.size();
134 treeDepth = Math.max(left.getTreeDepth(), right.getTreeDepth()) + 1;
147 * @param left string on the left
151 concatenate(ByteString left, ByteString right) argument
212 concatenateBytes(ByteString left, ByteString right) argument
233 newInstanceForTest(ByteString left, ByteString right) argument
608 balance(ByteString left, ByteString right) argument
[all...]
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/
H A DFixedTableModelTest.java85 assertEquals(0f, cellRect.left);
92 assertEquals(300f, cellRect.left);
99 assertEquals(600f, cellRect.left);
106 assertEquals(0f, cellRect.left);
113 assertEquals(300f, cellRect.left);
124 assertEquals(0f, cellRect.left);
131 assertEquals(300f, cellRect.left);
138 assertEquals(600f, cellRect.left);
145 assertEquals(0f, cellRect.left);
152 assertEquals(300f, cellRect.left);
[all...]

Completed in 773 milliseconds

1234567891011>>