Searched defs:top (Results 401 - 425 of 488) sorted by relevance

<<11121314151617181920

/external/libxml2/
H A Dxmlregexp.c356 static void xmlFAParseRegExp(xmlRegParserCtxtPtr ctxt, int top);
5360 * @top: is this the top-level expression ?
5365 xmlFAParseRegExp(xmlRegParserCtxtPtr ctxt, int top) { argument
5368 /* if not top start should have been generated by an epsilon trans */
5372 if (top) {
5393 if (!top) {
/external/opencv/cxcore/include/
H A Dcxtypes.h377 int origin; /* 0 - top-left origin,
1164 CvMemBlock* top; /* Current memory block - top of the stack. */ member in struct:CvMemStorage
1178 CvMemBlock* top; member in struct:CvMemStoragePos
/external/opencv3/modules/core/include/opencv2/core/
H A Dtypes_c.h312 int origin; /**< 0 - top-left origin,
1193 CvMemBlock* top; /**< Current memory block - top of the stack. */ member in struct:CvMemStorage
1207 CvMemBlock* top; member in struct:CvMemStoragePos
/external/opencv3/modules/java/src/
H A Dcore+Core.java365 // C++: void copyMakeBorder(Mat src, Mat& dst, int top, int bottom, int left, int right, int borderType, Scalar value = Scalar())
368 //javadoc: copyMakeBorder(src, dst, top, bottom, left, right, borderType, value)
369 public static void copyMakeBorder(Mat src, Mat dst, int top, int bottom, int left, int right, int borderType, Scalar value) argument
372 copyMakeBorder_0(src.nativeObj, dst.nativeObj, top, bottom, left, right, borderType, value.val[0], value.val[1], value.val[2], value.val[3]);
377 //javadoc: copyMakeBorder(src, dst, top, bottom, left, right, borderType)
378 public static void copyMakeBorder(Mat src, Mat dst, int top, int bottom, int left, int right, int borderType) argument
381 copyMakeBorder_1(src.nativeObj, dst.nativeObj, top, bottom, left, right, borderType);
2216 // C++: void copyMakeBorder(Mat src, Mat& dst, int top, int bottom, int left, int right, int borderType, Scalar value = Scalar())
2217 private static native void copyMakeBorder_0(long src_nativeObj, long dst_nativeObj, int top, int bottom, int left, int right, int borderType, double value_val0, double value_val1, double value_val2, double value_val3); argument
2218 private static native void copyMakeBorder_1(long src_nativeObj, long dst_nativeObj, int top, in argument
[all...]
/external/pcre/dist/
H A Dpcre_jit_compile.c228 struct backtrack_common *top; member in struct:backtrack_common
5936 backtrack->prev = parent->top; \
5938 parent->top = backtrack; \
5949 backtrack->prev = parent->top; \
5951 parent->top = backtrack; \
6565 altbacktrack.top = NULL;
6622 /* We know that STR_PTR was stored on the top of the stack. */
6646 compile_backtrackingpath(common, altbacktrack.top);
6737 /* We know that STR_PTR was stored on the top of the stack. */
6739 /* Keep the STR_PTR on the top o
[all...]
/external/v8/src/arm64/
H A Dmacro-assembler-arm64.cc76 // Ignore the top 32 bits of an immediate if we're moving to a W register.
78 // Check that the top 32 bits are consistent.
274 // Note that mov(w0, w0) is not a no-op because it clears the top word of
276 // registers is not required to clear the top word of the X register. In
1854 // where we only pushed one W register on top of an aligned jssp.
2757 // Save the frame pointer and context pointer in the top frame.
2815 // Restore the context pointer from the top frame.
2823 // Also emit debug code to clear the cp in the top frame.
2828 // Clear the frame pointer from the top frame.
2956 // Check relative positions of allocation top an
2962 intptr_t top = reinterpret_cast<intptr_t>(heap_allocation_top.address()); local
3033 intptr_t top = reinterpret_cast<intptr_t>(heap_allocation_top.address()); local
[all...]
/external/v8/src/heap/
H A Dmark-compact.cc106 static void VerifyMarking(Heap* heap, Address bottom, Address top) { argument
111 for (Address current = bottom; current < top; current += kPointerSize) {
126 Address end = space->top();
197 NewSpacePageIterator it(space->bottom(), space->top());
203 Address limit = it.has_next() ? page->area_end() : space->top();
204 CHECK(limit == space->top() || !page->Contains(space->top()));
401 NewSpacePageIterator it(space->bottom(), space->top());
1320 void VisitThread(Isolate* isolate, ThreadLocalTop* top) { argument
1321 collector_->PrepareThreadForCodeFlushing(isolate, top);
1354 PrepareThreadForCodeFlushing(Isolate* isolate, ThreadLocalTop* top) argument
[all...]
H A Dspaces.h68 // section is denoted by the top field in the space. The end of the section
72 // array every time the top field is updated and a new object is created. The
75 // Since the top and limit fields are in the space, not the page, only one page
76 // has a special garbage section, and if the top and limit are equal then there
465 // top points to the next address after the chunk, which effectively belongs
801 // Page* p = Page::FromAllocationTop(top);
812 // Returns the page containing an allocation top. Because an allocation
813 // top address can be the upper bound of the page, we need to subtract
816 INLINE(static Page* FromAllocationTop(Address top)) { argument
817 Page* p = FromAddress(top
1485 AllocationInfo(Address top, Address limit) argument
1487 Reset(Address top, Address limit) argument
1492 INLINE(void set_top(Address top)) argument
1498 INLINE(Address top()) const { function in class:v8::internal::AllocationInfo
1678 FreeSpace* top() { return top_.Value(); } function in class:v8::internal::FreeListCategory
1679 set_top(FreeSpace* top) argument
2025 Address top() { return allocation_info_.top(); } function in class:v8::internal::PagedSpace
2067 SetTopAndLimit(Address top, Address limit) argument
2760 Address top() { function in class:v8::internal::NewSpace
[all...]
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc385 // Load store buffer top.
390 // Store pointer to buffer and increment buffer top.
393 // Write back new top of buffer.
3282 // Check relative positions of allocation top and limit addresses.
3290 intptr_t top = reinterpret_cast<intptr_t>(allocation_top.address()); local
3292 DCHECK((limit - top) == kPointerSize);
3294 // Set up allocation top address and allocation limit registers.
3302 // Load allocation top into result and allocation limit into alloc_limit.
3307 // Assert that result actually contains top on entry.
3311 // Load allocation limit. Result already contains allocation top
3371 intptr_t top = reinterpret_cast<intptr_t>(allocation_top.address()); local
[all...]
/external/v8/src/ppc/
H A Dmacro-assembler-ppc.cc498 // Load store buffer top.
503 // Store pointer to buffer and increment buffer top.
506 // Write back new top of buffer.
911 // Save the frame pointer and the context in top.
988 // Clear top frame.
993 // Restore current context from top and clear it in debug mode.
1508 // Check relative positions of allocation top and limit addresses.
1514 intptr_t top = reinterpret_cast<intptr_t>(allocation_top.address()); local
1516 DCHECK((limit - top) == kPointerSize);
1518 // Set up allocation top addres
1608 intptr_t top = reinterpret_cast<intptr_t>(allocation_top.address()); local
[all...]
/external/valgrind/memcheck/
H A Dmc_translate.c796 the top half. */
802 /* Use InterleaveHI64x2 to copy the top half of the vector into
904 // Now introduce zeros (defined bits) in the top 63 places
920 // Zero (Def) out the top 63 bits
978 IRAtom *improved, *final_cast, *top; local
996 top = mkU16(0xFFFF);
1005 top = mkU32(0xFFFFFFFF);
1014 top = mkU64(0xFFFFFFFFFFFFFFFFULL);
1036 assignNew('V', mce,Ity_I1, binop(opCMP, vec, top)));
1068 Here, bit 3 (LT) of the result is a copy of the top bi
[all...]
/external/zxing/core/
H A Dcore.jar ... .LuminanceSource crop (int, int, int, int) int left int top int width int height public boolean isRotateSupported () public com. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/kernel-headers/original/uapi/linux/
H A Dvideodev2.h89 top, bottom, interlaced
93 V4L2_FIELD_TOP = 2, /* top field only */
97 buffer, top-bottom order */
98 V4L2_FIELD_SEQ_BT = 6, /* same as above + bottom-top order */
101 V4L2_FIELD_INTERLACED_TB = 8, /* both fields interlaced, top field
102 first and the top field is
104 V4L2_FIELD_INTERLACED_BT = 9, /* both fields interlaced, top field
380 __s32 top; member in struct:v4l2_rect
1420 /* field 'status' - VCR and set-top box */
/external/mesa3d/src/mesa/main/
H A Ddlist.c2525 GLdouble bottom, GLdouble top, GLdouble nearval, GLdouble farval)
2535 n[4].f = (GLfloat) top;
2540 CALL_Frustum(ctx->Exec, (left, right, bottom, top, nearval, farval));
3163 GLdouble bottom, GLdouble top, GLdouble nearval, GLdouble farval)
3173 n[4].f = (GLfloat) top;
3178 CALL_Ortho(ctx->Exec, (left, right, bottom, top, nearval, farval));
2524 save_Frustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble nearval, GLdouble farval) argument
3162 save_Ortho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble nearval, GLdouble farval) argument
/external/opencv3/modules/core/src/
H A Dgl_core_3_1.cpp2437 static void CODEGEN_FUNCPTR Switch_Ortho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val) argument
2440 Ortho(left, right, bottom, top, near_val, far_val);
/external/pdfium/xfa/src/fdp/include/
H A Dfde_css.h572 top.Set(eUnit);
579 top.Set(eUnit, fValue);
585 FDE_CSSLENGTH left, top, right, bottom; member in struct:FDE_CSSRECT
/external/robolectric/v1/lib/main/
H A Djson-20080701.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/json/ org/json/CDL.class CDL. ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Djson-20080701.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/json/ org/json/CDL.class CDL. ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
/external/toybox/generated/
H A Dglobals.h936 struct stat top; member in struct:cp_data
1158 } top; member in union:ps_data::__anon17583
/external/v8/src/regexp/
H A Djsregexp.cc803 // of 1) it suffices to store the current position on the top of the stack
818 // current position offset, an optional backtrack code location on the top of
1413 // Now that we have unwound the stack we find at the top of the stack the
5564 uc16 top = to(); local
5567 if (top > String::kMaxOneByteCharCode) top = String::kMaxOneByteCharCode;
5570 if (top == bottom) {
5600 while (pos <= top) {
5609 int end = (block_end > top) ? top
[all...]
/external/guice/extensions/persist/lib/
H A Dhibernate-entitymanager.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/hibernate/ org/hibernate/ejb/ ...
/external/valgrind/VEX/priv/
H A Dguest_arm64_toIR.c2663 IRTemp top = newTemp(ty); local
2673 assign(top, mkexpr(extend ? mathREPLICATE(ty, src, immS) : dst));
2676 binop(mkAND(ty), mkexpr(top), mkU(ty, ~tmask)),
7999 different from the top bit of the original value. */
8002 /* qDiff1 is the shifted out bits, and the top bit of the original
8005 /* qDiff2 is the top bit of the original value, cloned the
8011 /* This also succeeds in comparing the top bit of the original
8022 /* If there's no shift, saturation depends on the top bit
13870 /* Spot "Special" instructions (see comment at top of file). */
13946 /* insn[28:25] determines the top
[all...]

Completed in 1944 milliseconds

<<11121314151617181920