Home
last modified time | relevance | path

Searched refs:pie (Results 1 – 25 of 242) sorted by relevance

12345678910

/external/gemmlowp/standalone/
Dcache_counters.cc266 PieChart* pie) const = 0;
271 void Analyze(const CacheCounts& cache_counts, PieChart* pie) const override { in Analyze()
272 pie->total = cache_counts.l1d_cache + cache_counts.l1d_cache_refill; in Analyze()
273 pie->l1_hits = cache_counts.l1d_cache - cache_counts.l2d_cache_refill - in Analyze()
275 pie->l2_hits = cache_counts.l1d_cache_refill; in Analyze()
276 pie->l3_hits = cache_counts.l2d_cache_refill; in Analyze()
277 pie->dram_hits = cache_counts.l3d_cache_refill; in Analyze()
283 void Analyze(const CacheCounts& cache_counts, PieChart* pie) const override { in Analyze()
284 pie->total = cache_counts.l1d_cache; in Analyze()
285 pie->l1_hits = cache_counts.l1d_cache - cache_counts.l2d_cache; in Analyze()
[all …]
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DSimplePieChartActivity.java24 import com.androidplot.pie.PieChart;
25 import com.androidplot.pie.PieRenderer;
26 import com.androidplot.pie.Segment;
27 import com.androidplot.pie.SegmentFormatter;
38 private PieChart pie; field in SimplePieChartActivity
53 pie = (PieChart) findViewById(R.id.mySimplePieChart); in onCreate()
67 pie.getRenderer(PieRenderer.class).setDonutSize(seekBar.getProgress()/100f, in onCreate()
69 pie.redraw(); in onCreate()
105 pie.addSeries(s1, sf1); in onCreate()
106 pie.addSeries(s2, sf2); in onCreate()
[all …]
/external/llvm-project/lld/test/MachO/
Dx86-64-reloc-unsigned.s6 # RUN: %lld -pie -o %t-pie %t.o
7 # RUN: llvm-objdump --macho --rebase %t-pie | FileCheck %s --check-prefix=PIE
8 # RUN: %lld -pie -no_pie -o %t-no-pie %t.o
9 # RUN: llvm-objdump --macho --rebase %t-no-pie | FileCheck %s --check-prefix=NO-PIE
10 # RUN: %lld -no_pie -pie -o %t-no-pie %t.o
11 # RUN: llvm-objdump --macho --rebase %t-no-pie | FileCheck %s --check-prefix=NO-PIE
13 # RUN: %lld -platform_version macos 10.6.0 11.0 -o %t-pie %t.o
14 # RUN: llvm-objdump --macho --rebase %t-pie | FileCheck %s --check-prefix=PIE
15 # RUN: %lld -platform_version macos 10.5.0 11.0 -o %t-no-pie %t.o
16 # RUN: llvm-objdump --macho --rebase %t-no-pie | FileCheck %s --check-prefix=NO-PIE
/external/fastrpc/
DMakefile3 LDFLAGS = -fPIC -pie -Wl,--version-script=src/symbols.lst -ldl -lpthread -lm
59 $(CC) -fpic -pie $(CFLAGS) -c $< -o $@
62 echo $(LD) -fpic -pie $(LDFLAGS) -o cdsprpcd
63 …$(CC) -fpic -pie -fPIC -pie -Wl,--version-script=src/symbols.lst -ldl -lpthread -lm $(ADSPRPCD_OBJ…
66 LDFLAGS = -fPIC -pie -Wl,--version-script=src/symbols.lst -shared -ldl -lpthread -lm
69 echo $(LD) -fpic -pie -shared $(LDFLAGS) -o libcdsp_default_listener.so
70 …$(CC) -fpic -pie -shared -fPIC -pie -Wl,--version-script=src/adsp_def_symbols.lst -ldl -lpthread -…
74 echo $(LD) -fpic -pie -shared $(LDFLAGS) -o libcdsprpc.so
75 $(CC) -fpic -pie -shared $(LDFLAGS) $(LIBADSPRPC_OBJ) -o libcdsprpc.so
/external/llvm-project/lld/test/ELF/
Drelative-dynamic-reloc-pie.s3 # RUN: ld.lld -pie %t.o -o %t.pie
4 # RUN: llvm-readobj -r --dyn-syms %t.pie | FileCheck %s
6 ## Test that we create R_X86_64_RELATIVE relocations with -pie.
Dmips64-eh-abs-reloc.s10 # -pie needs -z notext because of the R_MIPS_64 relocation
11 # RUN: ld.lld --eh-frame-hdr -Bdynamic -pie -z notext -o %t-pie-dynamic.exe %t.o %t-foo.o
12 # RUN: llvm-readobj -r %t-pie-dynamic.exe | FileCheck %s -check-prefix PIC-RELOCS
Dcopy-rel.s3 ## Test copy relocations can be created for -no-pie and -pie.
12 # RUN: ld.lld %t.o %t1.so -o %t -pie
Dmips-elf-abi.s9 # RUN: ld.lld -pie -o %t.pie %t.o
10 # RUN: llvm-readobj -h %t.pie | FileCheck -check-prefix=PIE %s
Dcanonical-plt-symbolic.s3 ## Test canonical PLT can be created for -no-pie and -pie.
12 # RUN: ld.lld %t.o %t1.so -o %t -pie
Driscv-reloc-add.s3 # RUN: ld.lld -pie %t.32.o -o %t.32
14 ## not allowed in -pie/-shared mode.
30 ## in such non-SHF_ALLOC sections in -pie/-shared mode.
Dcanonical-plt-pcrel.s3 ## Test canonical PLT can be created for -no-pie and -pie.
13 # RUN: ld.lld %t.o %t1.so -o %t -pie
Ddriver.test45 ## Attempt to use -r and -pie together
46 # RUN: not ld.lld -r -pie %t -o /dev/null 2>&1 | FileCheck -check-prefix=ERR6 %s
47 # ERR6: -r and -pie may not be used together
49 ## Attempt to use -shared and -pie together
50 # RUN: not ld.lld -shared -pie %t -o /dev/null 2>&1 | FileCheck -check-prefix=ERR7 %s
51 # ERR7: -shared and -pie may not be used together
Dseparate-segments.s6 # RUN: ld.lld -pie %t.o -o %t
15 # RUN: ld.lld -pie %t.o -z separate-code -o %t
23 # RUN: ld.lld -pie %t.o -z separate-loadable-segments -o %t
Dweak-undef-no-dynamic-linker.s3 # RUN: ld.lld -pie %t.o -o %t
5 # RUN: ld.lld -pie --no-dynamic-linker %t.o -o %t
Driscv-gp-no-sdata.s3 # RUN: ld.lld -pie %t.32.o -o %t.32
7 # RUN: ld.lld -pie %t.64.o -o %t.64
Dpie.s9 ## Check -pie.
10 # RUN: ld.lld -pie %t1.o -o %t
54 # RUN: ld.lld -no-pie %t1.o -o %t2
/external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
DMakefile11 no-pie-option := $(call try-run, echo 'int main() { return 0; }' | \
12 $(CC) -Werror $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -no-pie -x c - -o "$$TMP", -no-pie)
14 LDFLAGS += $(no-pie-option)
/external/toolchain-utils/compiler_wrapper/
Dpie_flags.go16 pie := false
25 pie = true
38 if pie && !arg.fromUser && arg.value == "-pie" {
/external/toolchain-utils/go/chromeos/
Dbuild_go26 ../bin/go install -v -buildmode=pie std
36 ../bin/go install -v -buildmode=pie std
46 ../bin/go install -v -buildmode=pie std
/external/icu/icu4c/source/data/unit/
Des_GT.txt54 per{"{0} por pie cúbico"}
73 dnam{"pie"}
83 dnam{"acre pie"}
Dqu.txt36 dnam{"pie cuadrado"}
37 other{"{0} pie cuadrado"}
193 dnam{"pie"}
194 other{"{0} pie"}
195 per{"{0}/pie"}
307 dnam{"acre-pie"}
308 other{"{0} acre-pie"}
328 dnam{"pie cúbico"}
329 other{"{0} pie cúbico"}
/external/linux-kselftest/tools/testing/selftests/kvm/
DMakefile52 no-pie-option := $(call try-run, echo 'int main() { return 0; }' | \
53 $(CC) -Werror -no-pie -x c - -o "$$TMP", -no-pie)
60 LDFLAGS += -pthread $(no-pie-option) $(pgste-option)
/external/modp_b64/
DMakefile18 CXX_STATIC_LIBRARY(libmodpb64.pie.a): $(CXX_OBJECTS)
20 all: CXX_STATIC_LIBRARY(libmodpb64.pie.a)
/external/bcc/cmake/
DFindCompilerFlag.cmake8 set(CMAKE_REQUIRED_FLAGS "-no-pie")
12 set(COMPILER_NOPIE_FLAG "-no-pie")
/external/llvm-project/lld/test/ELF/lto/
Dabs-resol.ll5 ; RUN: ld.lld %t.o %t2.o -o %t3.out -pie
8 ; RUN: ld.lld %t.o -T%t.script -o %t4.out -pie

12345678910