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

1 2 3

  /external/curl/docs/examples/
multi-single.c 55 int repeats = 0; local
91 repeats++; /* count number of repeated zero numfds */
92 if(repeats > 1) {
97 repeats = 0;
  /external/eigen/bench/
spmv.cpp 11 #define SPMV_BENCH(CODE) BENCH(t,tries,repeats,CODE);
44 int repeats = 2; local
67 repeats = atoi(argv[i]+1);
76 std::cout << argv[0] << " r<nb rows> c<nb columns> n<non zeros per column> t<nb tries> p<nb repeats>\n";
80 std::cout << "SpMV " << rows << " x " << cols << " with " << nnzPerCol << " non zeros per column. (" << repeats << " repeats, and " << tries << " tries)\n\n";
100 std::cout << "Dense " << t.value()/repeats << "\t";
103 std::cout << t.value()/repeats << endl;
110 std::cout << "Eigen " << t.value()/repeats << "\t";
113 std::cout << t.value()/repeats << endl
    [all...]
benchCholesky.cpp 41 int repeats = (REPEAT*1000)/(rows*rows); local
57 for (int k=0; k<repeats; ++k)
68 for (int k=0; k<repeats; ++k)
81 << (timerNoSqrt.best()) / repeats << "s "
82 << "(" << 1e-9 * cost*repeats/timerNoSqrt.best() << " GFLOPS)\t"
83 << (timerSqrt.best()) / repeats << "s "
84 << "(" << 1e-9 * cost*repeats/timerSqrt.best() << " GFLOPS)\n";
99 for (int k=0; k<repeats; ++k)
109 << timerSqrt.value() * REPEAT / repeats << "s"; local
bench_reverse.cpp 24 int repeats = (REPEAT*1000)/size; local
36 for (int k=0; k<repeats; ++k)
51 << (timerB.value() * REPEAT) / repeats << "s "
52 << "(" << 1e-6 * size*repeats/timerB.value() << " MFLOPS)\t";
  /external/toybox/toys/posix/
uniq.c 34 long repeats;
55 if (toys.optflags & (TT.repeats ? FLAG_u : FLAG_d)) return;
56 if (toys.optflags & FLAG_c) fprintf(f, "%7lu ", TT.repeats + 1);
97 TT.repeats++;
101 TT.repeats = 0;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/
SetMem.S 56 movb %al, %ah # ax <- Value repeats twice
58 movd %eax, %xmm0 # xmm0[0..16] <- Value repeats twice
59 pshuflw $0, %xmm0, %xmm0 # xmm0[0..63] <- Value repeats 8 times
60 movlhps %xmm0, %xmm0 # xmm0 <- Value repeats 16 times
SetMem.asm 51 mov ah, al ; ax <- Value repeats twice
53 movd xmm0, eax ; xmm0[0..16] <- Value repeats twice
54 pshuflw xmm0, xmm0, 0 ; xmm0[0..63] <- Value repeats 8 times
55 movlhps xmm0, xmm0 ; xmm0 <- Value repeats 16 times
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/CompilerStub/X64/
memsetSSE2.asm 58 mov ah, al ; ax <- Value repeats twice
59 movd xmm0, eax ; xmm0[0..16] <- Value repeats twice
60 pshuflw xmm0, xmm0, 0 ; xmm0[0..63] <- Value repeats 8 times
61 movlhps xmm0, xmm0 ; xmm0 <- Value repeats 16 times
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/X64/
EfiSetMemSSE2.asm 52 mov ah, al ; ax <- Value repeats twice
53 movd xmm0, eax ; xmm0[0..16] <- Value repeats twice
54 pshuflw xmm0, xmm0, 0 ; xmm0[0..63] <- Value repeats 8 times
55 movlhps xmm0, xmm0 ; xmm0 <- Value repeats 16 times
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
structtag.go 47 DuplicateJSON int `json:"a"` // ERROR "struct field DuplicateJSON repeats json tag .a. also at testdata/structtag.go:46"
52 DuplicateOmitJSON int `json:"a,omitempty"` // ERROR "struct field DuplicateOmitJSON repeats json tag .a. also at testdata/structtag.go:46"
58 AnonymousJSON `json:"a"` // ERROR "struct field AnonymousJSON repeats json tag .a. also at testdata/structtag.go:46"
61 DuplicateXML int `xml:"a"` // ERROR "struct field DuplicateXML repeats xml tag .a. also at testdata/structtag.go:60"
66 DuplicateOmitXML int `xml:"a,omitempty"` // ERROR "struct field DuplicateOmitXML repeats xml tag .a. also at testdata/structtag.go:60"
72 AnonymousXML `xml:"a"` // ERROR "struct field AnonymousXML repeats xml tag .a. also at testdata/structtag.go:60"
77 DupAttr int `xml:"b,attr"` // ERROR "struct field DupAttr repeats xml attribute tag .b. also at testdata/structtag.go:76"
78 DupOmitAttr int `xml:"b,omitempty,attr"` // ERROR "struct field DupOmitAttr repeats xml attribute tag .b. also at testdata/structtag.go:76"
80 AnonymousXML `xml:"b,attr"` // ERROR "struct field AnonymousXML repeats xml attribute tag .b. also at testdata/structtag.go:76"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
structtag.go 47 DuplicateJSON int `json:"a"` // ERROR "struct field DuplicateJSON repeats json tag .a. also at testdata/structtag.go:46"
52 DuplicateOmitJSON int `json:"a,omitempty"` // ERROR "struct field DuplicateOmitJSON repeats json tag .a. also at testdata/structtag.go:46"
58 AnonymousJSON `json:"a"` // ERROR "struct field AnonymousJSON repeats json tag .a. also at testdata/structtag.go:46"
61 DuplicateXML int `xml:"a"` // ERROR "struct field DuplicateXML repeats xml tag .a. also at testdata/structtag.go:60"
66 DuplicateOmitXML int `xml:"a,omitempty"` // ERROR "struct field DuplicateOmitXML repeats xml tag .a. also at testdata/structtag.go:60"
72 AnonymousXML `xml:"a"` // ERROR "struct field AnonymousXML repeats xml tag .a. also at testdata/structtag.go:60"
77 DupAttr int `xml:"b,attr"` // ERROR "struct field DupAttr repeats xml attribute tag .b. also at testdata/structtag.go:76"
78 DupOmitAttr int `xml:"b,omitempty,attr"` // ERROR "struct field DupOmitAttr repeats xml attribute tag .b. also at testdata/structtag.go:76"
80 AnonymousXML `xml:"b,attr"` // ERROR "struct field AnonymousXML repeats xml attribute tag .b. also at testdata/structtag.go:76"
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/CompilerStub/Ia32/
memsetSSE2.asm 59 pshuflw xmm0, xmm0, 0 ; xmm0[0..63] <- Value repeats 8 times
60 movlhps xmm0, xmm0 ; xmm0 <- Value repeats 16 times
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/
SetMem.asm 59 pshuflw xmm0, xmm0, 0 ; xmm0[0..63] <- Value repeats 8 times
60 movlhps xmm0, xmm0 ; xmm0 <- Value repeats 16 times
  /toolchain/binutils/binutils-2.25/include/opcode/
msp430-decode.h 25 /* Double-operand instructions - all repeat .REPEATS times. */
40 MSO_rrc, /* Rotate through carry, dest >>= .REPEATS. */
42 MSO_rra, /* Signed shift dest >>= .REPEATS. */
44 MSO_push, /* Push .REPEATS registers (or other op) starting at SRC going towards R0. */
45 MSO_pop, /* Pop .REPEATS registers starting at DEST going towards R15. */
53 MSO_rru, /* Unsigned shift right, dest >>= .REPEATS. */
119 unsigned repeat_reg:1; /* If set, count is in REG[repeats]. */
121 unsigned repeats:5; /* Contains COUNT-1, or register number. */ member in struct:__anon108811
  /toolchain/binutils/binutils-2.25/opcodes/
msp430-decode.opc 275 msp430->repeats = dsxt;
521 msp430->repeats = bt;
528 msp430->repeats = bt;
535 msp430->repeats = bt;
542 msp430->repeats = bt;
578 msp430->repeats = bits;
584 msp430->repeats = bits;
  /external/webrtc/webrtc/base/
maccocoasocketserver.mm 104 repeats:NO];
  /prebuilts/go/darwin-x86/src/compress/bzip2/
bzip2.go 39 byteRepeats uint // the number of repeats of lastByte seen.
40 repeats uint // the number of copies of lastByte to output.
118 for (bz2.repeats > 0 || bz2.preRLEUsed < len(bz2.preRLE)) && n < len(buf) {
123 // byte which contains the number of repeats of that byte to
124 // include. (The number of repeats can be zero.) Because we are
128 if bz2.repeats > 0 {
131 bz2.repeats--
132 if bz2.repeats == 0 {
144 bz2.repeats = uint(b)
399 return StructuralError("repeats past end of block"
    [all...]
  /prebuilts/go/linux-x86/src/compress/bzip2/
bzip2.go 39 byteRepeats uint // the number of repeats of lastByte seen.
40 repeats uint // the number of copies of lastByte to output.
118 for (bz2.repeats > 0 || bz2.preRLEUsed < len(bz2.preRLE)) && n < len(buf) {
123 // byte which contains the number of repeats of that byte to
124 // include. (The number of repeats can be zero.) Because we are
128 if bz2.repeats > 0 {
131 bz2.repeats--
132 if bz2.repeats == 0 {
144 bz2.repeats = uint(b)
399 return StructuralError("repeats past end of block"
    [all...]
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDAppClient.m 56 repeats:(BOOL)repeats
68 repeats:(BOOL)repeats
77 repeats:repeats];
181 repeats:YES
  /external/toolchain-utils/cros_utils/
pstat.py 142 repeats = len(source) / len(addon) # repeat addon n times
144 for i in range(repeats - 1):
147 repeats = len(source) / len(addon) + 1 # repeat addon x times,
149 for i in range(repeats - 1):
154 repeats = len(addon) / len(source) # repeat source n times
156 for i in range(repeats - 1):
159 repeats = len(addon) / len(source) + 1 # repeat source x times,
161 for i in range(repeats - 1):
    [all...]
  /external/valgrind/gdbserver_tests/
mcwatchpoints.stdoutB.exp 38 $1 = 'p' <repeats 50000 times>
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bigmem.py 217 repeats = size // len(chars) + 2
218 s = chars * repeats
226 repeats = size // len(whitespace) + 2
227 s = whitespace * repeats
245 repeats = size // len(chars) + 2
246 s = chars * repeats
421 repeats = size // sublen + 2
422 s = SUBSTR * repeats
424 self.assertEqual(len(s), sublen * repeats)
441 repeats = size // sublen + 2
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_bigmem.py 218 repeats = size // len(chars) + 2
219 s = chars * repeats
227 repeats = size // len(whitespace) + 2
228 s = whitespace * repeats
246 repeats = size // len(chars) + 2
247 s = chars * repeats
422 repeats = size // sublen + 2
423 s = SUBSTR * repeats
425 self.assertEqual(len(s), sublen * repeats)
442 repeats = size // sublen +
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_bigmem.py 218 repeats = size // len(chars) + 2
219 s = chars * repeats
227 repeats = size // len(whitespace) + 2
228 s = whitespace * repeats
246 repeats = size // len(chars) + 2
247 s = chars * repeats
422 repeats = size // sublen + 2
423 s = SUBSTR * repeats
425 self.assertEqual(len(s), sublen * repeats)
442 repeats = size // sublen +
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bigmem.py 218 repeats = size // len(chars) + 2
219 s = chars * repeats
227 repeats = size // len(whitespace) + 2
228 s = whitespace * repeats
246 repeats = size // len(chars) + 2
247 s = chars * repeats
422 repeats = size // sublen + 2
423 s = SUBSTR * repeats
425 self.assertEqual(len(s), sublen * repeats)
442 repeats = size // sublen +
    [all...]

Completed in 2103 milliseconds

1 2 3