HomeSort by relevance Sort by last modified time
    Searched full:edges (Results 51 - 75 of 1319) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/components/url_matcher/
substring_set_matcher.h 71 // The Aho Corasick algorithm improves this runtime by using failure edges.
85 typedef std::map<char, uint32> Edges;
97 const Edges& edges() const { return edges_; } function in class:url_matcher::SubstringSetMatcher::AhoCorasickNode
107 // Outgoing edges of current node.
108 Edges edges_;
  /packages/apps/InCallUI/res/values/
dimens.xml 29 <!-- Padding at the left and right edges of the "call banner". -->
31 <!-- Padding at the right edges of the secondary call banner. -->
33 <!-- Padding at the top and bottom edges of the "call banner". -->
36 <!-- Padding at the top and bottom edges of the "provider information" -->
56 <!-- Padding at the left and right edges of the incall_touch_ui button
58 buttons to be very close to the edges of the screen, due to the
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
JSHeapSnapshot.js 73 createEdge: function(edges, edgeIndex)
75 return new WebInspector.JSHeapSnapshotEdge(this, edges, edgeIndex);
122 // Mark hidden edges of global objects as invisible.
125 for (var iter = this.rootNode().edges(); iter.hasNext(); iter.next()) {
131 for (var innerIter = node.edges(); innerIter.hasNext(); innerIter.next()) {
177 for (var iter = node.edges(); iter.hasNext(); iter.next()) {
192 for (var iter = node.edges(); iter.hasNext(); iter.next()) {
218 for (var iter = this.rootNode().edges(); iter.hasNext(); iter.next()) {
231 for (var iter = gcRoots.edges(); iter.hasNext(); iter.next()) {
233 for (var iter2 = subRoot.edges(); iter2.hasNext(); iter2.next()
    [all...]
  /external/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 10 // BreakCriticalEdges pass - Break all of the critical edges in the CFG by
12 // cannot deal with critical edges. For this usage, the structure type is
18 #define DEBUG_TYPE "break-crit-edges"
57 INITIALIZE_PASS(BreakCriticalEdges, "break-crit-edges",
58 "Break critical edges in CFG", false, false)
66 // runOnFunction - Loop over all of the edges in the CFG, breaking critical
67 // edges as they are found.
130 /// If MergeIdenticalEdges is true (not the default), *all* edges from TI to the
133 /// have many edges to any one destination. This ensures that all edges to tha
    [all...]
  /external/llvm/docs/HistoricalNotes/
2003-06-25-Reoptimizer1.txt 7 back-edges and insert llvm_first_trigger() function call which takes
30 How do we keep track of which edges to instrument, and which edges are
34 region and mark reachable edges.
37 region IGNORING back edges, and mark the edges which are reachable in
41 3) Mark BBs which end in edges that exit the hot region; we need to
  /external/chromium_org/third_party/freetype/src/autofit/
aflatin2.c 1111 /* We will begin by generating a sorted table of edges for the */
1233 AF_Edge edges = axis->edges; local
1841 AF_Edge edges = axis->edges; local
    [all...]
  /external/freetype/src/autofit/
aflatin2.c 1111 /* We will begin by generating a sorted table of edges for the */
1233 AF_Edge edges = axis->edges; local
1841 AF_Edge edges = axis->edges; local
    [all...]
  /external/chromium_org/chrome/tools/
history-viz.py 161 edges = {} # Map of urlid->urlid->Edge.
167 edges[src] = edges.get(src, {})
168 edge = edges[src][dst] = edges[src].get(dst, Edge(src, dst))
174 return urls, edges
178 urls, edges = LoadHistory(sys.argv[1])
209 # Output all the edges between nodes.
210 for src, dsts in edges.items():
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
RoundedRect.cpp 99 void RoundedRect::Radii::includeLogicalEdges(const RoundedRect::Radii& edges, bool isHorizontal, bool includeLogicalLeftEdge, bool includeLogicalRightEdge)
103 m_bottomLeft = edges.bottomLeft();
105 m_topRight = edges.topRight();
106 m_topLeft = edges.topLeft();
111 m_topRight = edges.topRight();
113 m_bottomLeft = edges.bottomLeft();
114 m_bottomRight = edges.bottomRight();
164 void RoundedRect::includeLogicalEdges(const Radii& edges, bool isHorizontal, bool includeLogicalLeftEdge, bool includeLogicalRightEdge)
166 m_radii.includeLogicalEdges(edges, isHorizontal, includeLogicalLeftEdge, includeLogicalRightEdge);
  /external/chromium_org/tools/telemetry/telemetry/core/heap/
chrome_js_heap_snapshot_parser.py 16 and a list of integers describing edges (types, the node the edge points to,
21 for nodes and the data fields for edges.
47 # Read the snapshot components (nodes, edges, strings, metadata).
49 self._edge_list = heap['edges']
75 if ('nodes' not in heap or 'edges' not in heap or 'strings' not in heap or
118 # Add pointers to the endpoints to the edges, and associate the edges with
135 edges_start: int, the index of the edge array where the edges for the node
195 """Helper function for filtering out edges from the heap snapshot.
  /system/core/libpixelflinger/
trap.cpp 32 // enable to see triangles edges
650 triangle_dump_edges( Edge* edges,
654 for ( ; count > 0; count--, edges++ )
655 edge_dump( edges );
663 Edge* edges,
672 Edge* edge = edges + *pcount;
728 // sort the edges horizontally
765 Edge edges[3]; local
770 edge_setup( edges, &num_edges, v0, v1, ymin, ymax );
771 edge_setup( edges, &num_edges, v0, v2, ymin, ymax )
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 24 /// Edges between SUnits are initially based on edges in the SelectionDAG,
25 /// and additional edges can be added by the schedulers as heuristics.
33 /// edges. Physical register dependence information is not carried in
163 /// ForceUnitLatencies - Return true if all scheduling edges should be given
  /external/opencv/cvaux/src/
cvsubdiv2.cpp 47 int i, j, total = subdiv->edges->total;
59 CvQuadEdge2D* edge = (CvQuadEdge2D*)cvGetSetElem(subdiv->edges,i);
114 // count number of edges in facet
166 int i, total = subdiv->edges->total;
173 CvQuadEdge2D *edge = (CvQuadEdge2D *) cvGetSetElem( subdiv->edges, i );
  /packages/services/Telephony/res/values/
dimens.xml 28 <!-- Padding at the left and right edges of the "call banner". -->
30 <!-- Padding at the top and bottom edges of the "call banner". -->
33 <!-- Padding at the top and bottom edges of the "provider information" -->
53 <!-- Padding at the left and right edges of the incall_touch_ui button
55 buttons to be very close to the edges of the screen, due to the
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cfghooks.h 41 be equivalent to E in the case of duplicate edges being removed) or NULL
45 /* Same as the above but allows redirecting of fallthru edges. In that case
73 /* Return true if the one of outgoing edges is already predicted by
99 /* Add fake edges to the function exit for any non constant and non noreturn
131 /* Given a condition BB extract the true/false taken/not taken edges
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cfghooks.h 41 be equivalent to E in the case of duplicate edges being removed) or NULL
45 /* Same as the above but allows redirecting of fallthru edges. In that case
73 /* Return true if the one of outgoing edges is already predicted by
99 /* Add fake edges to the function exit for any non constant and non noreturn
131 /* Given a condition BB extract the true/false taken/not taken edges
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cfghooks.h 41 be equivalent to E in the case of duplicate edges being removed) or NULL
45 /* Same as the above but allows redirecting of fallthru edges. In that case
73 /* Return true if the one of outgoing edges is already predicted by
99 /* Add fake edges to the function exit for any non constant and non noreturn
131 /* Given a condition BB extract the true/false taken/not taken edges
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cfghooks.h 41 be equivalent to E in the case of duplicate edges being removed) or NULL
45 /* Same as the above but allows redirecting of fallthru edges. In that case
73 /* Return true if the one of outgoing edges is already predicted by
99 /* Add fake edges to the function exit for any non constant and non noreturn
131 /* Given a condition BB extract the true/false taken/not taken edges
  /external/opencv/cv/src/
cvstereogc.cpp 134 static int64 icvGCMaxFlow( GCVtx* vtx, int nvtx, GCEdge* edges, GCVtx**& _orphans, int& _maxOrphans )
179 for( ei = v->first; ei != 0; ei = edges[ei].next )
181 if( edges[ei^vt].weight == 0 )
183 u = edges[ei].dst;
224 min_weight = edges[e0].weight;
229 for( v = edges[e0^k].dst;; v = edges[ei].dst )
233 weight = edges[ei^k].weight;
242 // modify weights of the edges along the path and collect orphans
243 edges[e0].weight -= min_weight
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_pred_common.c 80 if (above_in_image && left_in_image) // both edges available
102 if (above_in_image && left_in_image) { // both edges available
108 // one of two edges uses comp pred (2/3)
112 // one of two edges uses comp pred (2/3)
115 else // both edges use comp pred (4)
126 } else { // no edges available (1)
152 if (above_in_image && left_in_image) { // both edges available
208 } else { // no edges available (2)
229 if (above_in_image && left_in_image) { // both edges available
273 } else { // no edges availabl
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_DeblockChroma_I.c 28 * Performs deblocking filtering on all edges of the chroma macroblock (16x16).
44 * [in] pBS array of size 16x2 of BS parameters (arranged in scan block order for vertical edges and then horizontal edges);
omxVCM4P10_DeblockLuma_I.c 29 * This function performs deblock filtering the horizontal and vertical edges of a luma macroblock
46 * [in] pBS pointer to a 16x2 table of BS parameters arranged in scan block order for vertical edges and then horizontal edges;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_DeblockChroma_I.c 28 * Performs deblocking filtering on all edges of the chroma macroblock (16x16).
44 * [in] pBS array of size 16x2 of BS parameters (arranged in scan block order for vertical edges and then horizontal edges);
omxVCM4P10_DeblockLuma_I.c 29 * This function performs deblock filtering the horizontal and vertical edges of a luma macroblock
46 * [in] pBS pointer to a 16x2 table of BS parameters arranged in scan block order for vertical edges and then horizontal edges;
  /packages/apps/DeskClock/res/values-sw600dp-land/
dimens.xml 57 <!-- Empty space at the edges of the +1 and reset button icons. Based off of 56dip width.-->
59 <!-- Empty space at the edges of the delete button icons. Based off of 56dip width. -->
61 <!-- Empty space at the edges of the delete button icons. Based off of 56dip width, only nonzero for tablets. -->

Completed in 1094 milliseconds

1 23 4 5 6 7 8 91011>>