HomeSort by relevance Sort by last modified time
    Searched refs:arc (Results 1 - 25 of 276) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
graminit.c 6 static arc arcs_0_0[3] = {
11 static arc arcs_0_1[1] = {
14 static arc arcs_0_2[1] = {
22 static arc arcs_1_0[3] = {
27 static arc arcs_1_1[1] = {
34 static arc arcs_2_0[1] = {
37 static arc arcs_2_1[2] = {
41 static arc arcs_2_2[1] = {
49 static arc arcs_3_0[1] = {
52 static arc arcs_3_1[1] = {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
graminit.c 6 static arc arcs_0_0[3] = {
11 static arc arcs_0_1[1] = {
14 static arc arcs_0_2[1] = {
22 static arc arcs_1_0[3] = {
27 static arc arcs_1_1[1] = {
34 static arc arcs_2_0[1] = {
37 static arc arcs_2_1[2] = {
41 static arc arcs_2_2[1] = {
49 static arc arcs_3_0[1] = {
52 static arc arcs_3_1[1] = {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
metagrammar.c 6 static arc arcs_0_0[3] = {
11 static arc arcs_0_1[1] = {
18 static arc arcs_1_0[1] = {
21 static arc arcs_1_1[1] = {
24 static arc arcs_1_2[1] = {
27 static arc arcs_1_3[1] = {
30 static arc arcs_1_4[1] = {
40 static arc arcs_2_0[1] = {
43 static arc arcs_2_1[2] = {
51 static arc arcs_3_0[1] = {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
metagrammar.c 6 static arc arcs_0_0[3] = {
11 static arc arcs_0_1[1] = {
18 static arc arcs_1_0[1] = {
21 static arc arcs_1_1[1] = {
24 static arc arcs_1_2[1] = {
27 static arc arcs_1_3[1] = {
30 static arc arcs_1_4[1] = {
40 static arc arcs_2_0[1] = {
43 static arc arcs_2_1[2] = {
51 static arc arcs_3_0[1] = {
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.h 37 struct arc { struct
55 void arc_init(struct arc *arc,
62 void arc_add_to_polygon(struct arc *arc,
67 void arc_to_path(struct arc *arc,
71 void arc_stroke_cb(struct arc *arc,
75 void arc_stroker_emit(struct arc *arc
    [all...]
arc.c 27 #include "arc.h"
165 try_to_fix_radii(struct arc *arc)
171 rot = DEGREES_TO_RADIANS(arc->theta);
178 x0p = (arc->x1*COS + arc->y1*SIN)/arc->a;
179 y0p = (-arc->x1*SIN + arc->y1*COS)/arc->b
    [all...]
  /test/vts/utils/python/coverage/
arc_summary_test.py 30 """Verifies that fake, non-fallthrough arc are resolved correctly.
32 The arc should be removed as an exit arc from the source.
37 arc = arc_summary.ArcSummary(src, dst, flag)
38 src.exit_arcs.append(arc)
39 dst.entry_arcs.append(arc)
40 self.assertTrue(arc.Resolve())
46 In the case when the source has fully-resolved entry arcs, the arc
48 missing arc and it can be solved for from the source.
56 arc = arc_summary.ArcSummary(block, middle, 0
    [all...]
function_summary.py 51 """Resolves the block and arc counts.
64 for arc in block.exit_arcs:
65 if not arc.resolved:
66 unresolved_arcs.append(arc)
70 # Resolve the arc counts
77 arc = unresolved_arcs[index]
78 if arc.Resolve():
79 unresolved_arcs.remove(arc)
86 block.count = sum(arc.count for arc in block.entry_arcs
    [all...]
function_summary_test.py 33 Creates an arc between adjacent blocks. All arcs are left with default
44 arc = arc_summary.ArcSummary(self.function_summary.blocks[i - 1],
46 self.function_summary.blocks[i - 1].exit_arcs.append(arc)
47 self.function_summary.blocks[i].entry_arcs.append(arc)
48 self.arcs.append(arc)
54 after a resolved arc.
60 for arc in self.arcs:
61 self.assertTrue(arc.resolved)
62 self.assertEqual(self.count, arc.count)
63 self.assertEqual(self.count, arc.src_block.count
    [all...]
gcda_parser_test.py 68 arc = arc_summary.ArcSummary(blocks[0], blocks[i], 0)
69 blocks[0].exit_arcs.append(arc)
70 blocks[i].entry_arcs.append(arc)
75 for i, arc in zip(range(1, n), blocks[0].exit_arcs):
76 self.assertEqual(i, arc.count)
77 self.assertTrue(arc.resolved)
82 Verifies that the fake arc and the arc on the tree are skipped while other
92 arc = arc_summary.ArcSummary(blocks[0], blocks[1],
94 blocks[0].exit_arcs.append(arc)
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
cg_arcs.h 25 * Arc structure for call-graph.
28 * of how many times this arc was traversed, and pointers to the next
31 typedef struct arc
33 Sym *parent; /* source vertice of arc */
34 Sym *child; /* dest vertice of arc */
36 double time; /* time inherited along arc */
37 double child_time; /* child-time inherited along arc */
38 struct arc *next_parent; /* next parent of CHILD */
39 struct arc *next_child; /* next child of PARENT */
40 int has_been_placed; /* have this arc's functions been placed? *
30 typedef struct arc struct
    [all...]
call_graph.c 61 /* Keep arc if it is on INCL_ARCS table or if the INCL_ARCS table
69 printf (_("[cg_tally] arc from %s to %s traversed %lu times\n"),
75 /* Read a record from file IFP describing an arc in the function
76 call-graph and the count of how many times the arc has been
99 /* Add this arc: */
110 Arc *arc;
115 for (arc = sym->cg.children; arc; arc = arc->next_child
109 Arc *arc; local
    [all...]
cg_arcs.c 51 Arc **arcs;
55 * Return TRUE iff PARENT has an arc to covers the address
58 Arc *
61 Arc *arc; local
70 for (arc = parent->cg.children; arc; arc = arc->next_child)
73 arc->parent->name, arc->child->name))
91 Arc *arc, **newarcs; local
166 Arc *arc; local
275 Arc *arc; local
363 Arc *arc; local
598 Arc *arc; local
    [all...]
  /external/lzma/CPP/7zip/Archive/
ArchiveExports.cpp 72 const CArcInfo &arc = *g_Arcs[formatIndex]; local
75 *outObject = arc.CreateInArchive();
80 if (!arc.CreateOutArchive)
82 *outObject = arc.CreateOutArchive();
96 const CArcInfo &arc = *g_Arcs[formatIndex]; local
100 case NArchive::NHandlerPropID::kName: prop = arc.Name; break;
104 CLS_ARC_ID_ITEM(clsId) = arc.ClassId;
107 case NArchive::NHandlerPropID::kExtension: if (arc.Ext) prop = arc.Ext; break;
108 case NArchive::NHandlerPropID::kAddExtension: if (arc.AddExt) prop = arc.AddExt; break;
    [all...]
  /external/autotest/client/site_tests/graphics_Gralloc/
graphics_Gralloc.py 11 from autotest_lib.client.common_lib.cros import arc
18 class graphics_Gralloc(arc.ArcTest):
36 arc.adb_root()
38 arc.adb_cmd('-e push %s %s' % (cmd, _SDCARD_EXEC))
39 arc._android_shell('mkdir -p %s' % (_EXEC_DIRECTORY))
40 arc._android_shell('mv %s %s' % (_SDCARD_EXEC, _ANDROID_EXEC))
41 arc._android_shell('chmod o+rwx %s' % (_ANDROID_EXEC))
45 arc._android_shell('rm -rf %s' % (_EXEC_DIRECTORY))
61 stdout = arc._android_shell(cmd)
  /external/autotest/client/site_tests/cheets_CTSHelper/
cheets_CTSHelper.py 7 from autotest_lib.client.common_lib.cros import arc
25 # Run stress test by logging in and starting ARC several times.
30 arc_mode=arc.arc_common.ARC_MODE_ENABLED) as _:
37 arc_mode=arc.arc_common.ARC_MODE_ENABLED,
47 arc_mode=arc.arc_common.ARC_MODE_ENABLED,
  /external/skia/gm/
arcofzorro.cpp 45 for (float arc = 134.0f; arc < 136.0f; arc += 0.01f) {
52 canvas->drawArc(rect, 0, arc, false, p);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arc/
nop.d 4 .*: +file format elf32-.*arc
warn.exp 19 if [istarget arc*-*-*] {
  /toolchain/binutils/binutils-2.25/ld/emulparams/
arcelf.sh 10 ARCH=arc
  /external/autotest/client/bin/
vm_sanity.py 23 from autotest_lib.client.common_lib.cros import arc, arc_common, chrome
49 # ARC test.
51 arc.wait_for_android_process('org.chromium.arc.intent_helper')
52 arc.wait_for_adb_ready()
54 if not arc.is_package_installed('android'):
59 utils.poll_for_condition(lambda: not arc.is_adb_connected(),
  /external/autotest/client/cros/multimedia/
arc_resource.py 5 """Resource manager to access the ARC-related functionality."""
14 from autotest_lib.client.common_lib.cros import arc
44 _MICROPHONE_ACTIVITY = 'org.chromium.arc.testapp.microphone/.MainActivity'
45 _MICROPHONE_PACKAGE = 'org.chromium.arc.testapp.microphone'
126 arc.adb_shell('pm grant %s android.permission.%s' % (
133 arc.adb_shell('am start -W %s' % pipes.quote(self._MICROPHONE_ACTIVITY))
142 arc.adb_shell(
154 arc.adb_cmd('pull %s %s' % (pipes.quote(self._MICROPHONE_RECORD_PATH),
160 arc.adb_shell('rm %s' % pipes.quote(self._MICROPHONE_RECORD_PATH))
194 arc.adb_cmd('push %s %s' % (pipes.quote(file_path)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
redef3.d 3 #not-target: arc-*-* *-*darwin*
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
group1.d 5 #xfail: arc-*-* d30v-*-* dlx-*-* i960-*-* pj*-*-*
group3b.d 5 #xfail: arc-*-* d30v-*-* dlx-*-* i960-*-* pj*-*-*

Completed in 234 milliseconds

1 2 3 4 5 6 7 8 91011>>