/hardware/qcom/display/msm8996/sdm/libs/utils/ |
rect.cpp | 39 return ((rect.bottom > rect.top) && (rect.right > rect.left)); 43 return ((rect1.left == rect2.left) && 50 DLOGV_IF(debug_tag, "%s: left = %.0f, top = %.0f, right = %.0f, bottom = %.0f", 51 prefix, roi.left, roi.top, roi.right, roi.bottom); 55 rect->left = ROUND_UP_ALIGN_UP(rect->left, align_x); 68 res.left = MAX(rect1.left, rect2.left); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/adjustfield.manip/ |
left.pass.cpp | 14 // ios_base& left(ios_base& str); 26 std::ios_base& r = std::left(ios); 28 assert(ios.flags() & std::ios::left);
|
/packages/apps/Settings/src/com/android/settings/drawable/ |
InsetBoundsDrawable.java | 34 public void setBounds(int left, int top, int right, int bottom) { 35 super.setBounds(left + mInsetBoundsSides, top, right - mInsetBoundsSides, bottom);
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Equals.java | 38 * @param left non-null reference to the evaluated left operand. 45 public XObject operate(XObject left, XObject right) 48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; 65 XObject left = m_left.execute(xctxt, true); local 68 boolean result = left.equals(right) ? true : false; 69 left.detach();
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
BitWriterBuffer.java | 20 int left = 8 - position % 8; local 21 if (numBits <= left) { 24 current += i << (left - numBits); 28 int bitsSecondWrite = numBits - left; 29 writeBits(i >> bitsSecondWrite, left);
|
/external/opencv3/modules/calib3d/perf/opencl/ |
perf_stereobm.cpp | 57 UMat left, right, disp; local 59 imread(getDataPath("gpu/stereobm/aloe-L.png"), IMREAD_GRAYSCALE).copyTo(left); 61 ASSERT_FALSE(left.empty()); 64 declare.in(left, right); 70 OCL_TEST_CYCLE() bm->compute(left, right, disp);
|
/external/webrtc/webrtc/modules/desktop_capture/ |
desktop_geometry.cc | 18 return point.x() >= left() && point.x() < right() && 23 return rect.left() >= left() && rect.right() <= right() && 28 left_ = std::max(left(), rect.left());
|
/external/wpa_supplicant_8/src/crypto/ |
aes-ctr.c | 28 size_t j, len, left = data_len; local 38 while (left > 0) { 41 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE; 45 left -= len;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/ |
RectFEvaluator.java | 33 * (left, top, right, and bottom). 45 float left = startValue.left + ((endValue.left - startValue.left) * fraction); local 49 mRect.set(left, top, right, bottom);
|
/packages/apps/Messaging/src/com/android/messaging/ui/animation/ |
RectEvaluatorCompat.java | 39 int left = startValue.left + (int) ((endValue.left - startValue.left) * fraction); local 43 return new Rect(left, top, right, bottom);
|
/external/libvpx/libvpx/vpx_dsp/ |
intrapred.c | 22 const uint8_t *above, const uint8_t *left) { 27 dst[r * stride] = AVG2(left[r], left[r + 1]); 28 dst[(bs - 1) * stride] = left[bs - 1]; 33 dst[r * stride] = AVG3(left[r], left[r + 1], left[r + 2]); 34 dst[(bs - 2) * stride] = AVG3(left[bs - 2], left[bs - 1], left[bs - 1]) [all...] |
/external/toybox/kconfig/ |
expr.c | 20 e->left.sym = sym; 29 e->left.expr = ce; 38 e->left.expr = e1; 48 e->left.sym = s1; 78 e->left = org->left; 81 e->left.expr = expr_copy(org->left.expr); 85 e->left.sym = org->left.sym [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_intra_prediction.c | 162 static void Get4x4NeighbourPels(u8 *a, u8 *l, u8 *data, u8 *above, u8 *left, 165 static void Intra16x16HorizontalPrediction(u8 *data, u8 *left); 166 static void Intra16x16DcPrediction(u8 *data, u8 *above, u8 *left, 168 static void Intra16x16PlanePrediction(u8 *data, u8 *above, u8 *left); 169 static void IntraChromaDcPrediction(u8 *data, u8 *above, u8 *left, 171 static void IntraChromaHorizontalPrediction(u8 *data, u8 *left); 173 static void IntraChromaPlanePrediction(u8 *data, u8 *above, u8 *left); 176 static void Intra4x4HorizontalPrediction(u8 *data, u8 *left); 177 static void Intra4x4DcPrediction(u8 *data, u8 *above, u8 *left, u32 A, u32 B); 179 static void Intra4x4DiagonalDownRightPrediction(u8 *data, u8 *above, u8 *left); [all...] |
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
realpath.c | 48 * in which case the path which caused trouble is left in (resolved). 58 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local 82 left_len = strlcpy(left, path + 1, sizeof(left)); 94 left_len = strlcpy(left, path, sizeof(left)); 96 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) { 104 * Iterate over path components in `left'. 108 * Extract the next path component and adjust `left' 111 p = strchr(left, '/'); [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ |
Pair.java | 22 private final L left;
field in class:Pair 30 public Pair(L left, R right) {
31 this.left = left;
66 return left;
78 public static <L, R> Pair<L, R> create(L left, R right) {
79 return new Pair<L, R>(left, right);
|
/external/replicaisland/src/com/replica/replicaisland/ |
QuickSorter.java | 44 // quicksort a[left] to a[right] 45 public void quicksort(Type[] a, int left, int right, Comparator<Type> comparator) { 46 if (right <= left) return; 47 int i = partition(a, left, right, comparator); 48 quicksort(a, left, i - 1, comparator); 52 // partition a[left] to a[right], assumes left < right 53 private int partition(Type[] a, int left, int right, Comparator<Type> comparator) { 54 int i = left - 1; 57 while (comparator.compare(a[++i], a[right]) < 0) { // find item on left to swa [all...] |
/external/libvpx/libvpx/vpx_dsp/mips/ |
intrapred4_dspr2.c | 15 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" 37 : [left] "r" (left), [dst] "r" (dst), [stride] "r" (stride) 42 const uint8_t *above, const uint8_t *left) { 49 "lw %[left_c], (%[left]) \n\t" 78 : [above] "r" (above), [left] "r" (left) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/ |
vp9_intrapred4_dspr2.c | 18 const uint8_t *above, const uint8_t *left) { 22 "lb %[tmp1], (%[left]) \n\t" 23 "lb %[tmp2], 1(%[left]) \n\t" 24 "lb %[tmp3], 2(%[left]) \n\t" 25 "lb %[tmp4], 3(%[left]) \n\t" 40 : [left] "r" (left), [dst] "r" (dst), [stride] "r" (stride) 45 const uint8_t *above, const uint8_t *left) { 52 "lw %[left_c], (%[left]) \n\t" 81 : [above] "r" (above), [left] "r" (left) [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/js/ |
effect.js | 3 var left = getComputedStyle(target).left; 4 return Number(left.substring(0, left.length - 2)); 69 {left: '0px', offset: 0}, 70 {left: '10px'}, 71 {left: '20px'}, 72 {left: '30px', offset: 0.6}, 73 {left: '40px'}, 74 {left: '50px' [all...] |
/external/clang/www/analyzer/ |
menu.css | 4 clear: left; 25 text-align: left; 29 float: left; 38 left: 0; 41 border-left: 1px solid; 46 left:auto;
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/numeric/ |
MaxFunction.java | 35 Value left = args[0]; local 37 return literalConstant(max(left.asNumber(), right.asNumber()), left, right);
|
MinFunction.java | 35 Value left = args[0]; local 37 return literalConstant(min(left.asNumber(), right.asNumber()), left, right);
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/ |
AndFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asBoolean() && right.asBoolean(), left, right);
|
DivideFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() / right.asNumber(), left, right);
|
EqualFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.equals(right), left, right);
|