Home
last modified time | relevance | path

Searched refs:howmuch (Results 1 – 25 of 465) sorted by relevance

12345678910>>...19

/dports/emulators/qemu-cheri/qemu-0a323821042c36e21ea80e58b9545dfc3b0cb8ef/target/cheri-common/
H A Dcheri-bounds-stats.h75 uint64_t howmuch; member
112 int64_t howmuch; in _howmuch_out_of_bounds() local
114 howmuch = (int64_t)offset; in _howmuch_out_of_bounds()
116 howmuch = offset - cap_get_length65(cr) + 1; in _howmuch_out_of_bounds()
121 howmuch, name, PRINT_CAP_ARGS(cr), in _howmuch_out_of_bounds()
123 return howmuch; in _howmuch_out_of_bounds()
131 if (howmuch <= bounds_buckets[i].howmuch) in out_of_bounds_stat_index()
142 int64_t howmuch = in check_out_of_bounds_stat() local
144 if (howmuch > 0) { in check_out_of_bounds_stat()
146 } else if (howmuch < 0) { in check_out_of_bounds_stat()
[all …]
/dports/news/trn4/trn-4.0-test77/
H A Dartsrch.c77 howmuch = ARTSCOPE_SUBJECT;
82 howmuch = art_howmuch;
97 howmuch = ARTSCOPE_FROM;
100 howmuch = ARTSCOPE_ONEHDR;
105 howmuch = ARTSCOPE_HEAD;
108 howmuch = ARTSCOPE_BODY_NOSIG;
111 howmuch = ARTSCOPE_BODY;
114 howmuch = ARTSCOPE_ARTICLE;
153 art_howmuch = howmuch;
171 if (howmuch == ARTSCOPE_SUBJECT) {
[all …]
/dports/science/hdf5-18/hdf5-1.8.21/tools/h5jam/
H A Dh5jam.c430 ssize_t howmuch = 0; in copy_some_to_file() local
452 howmuch = limit; in copy_some_to_file()
455 if(0 == howmuch) in copy_some_to_file()
461 if (howmuch > 512) { in copy_some_to_file()
465 to = toend - howmuch; in copy_some_to_file()
469 while (howmuch > 0) { in copy_some_to_file()
473 if (howmuch > 512) { in copy_some_to_file()
490 howmuch -= nchars; in copy_some_to_file()
491 if(howmuch > 512) { in copy_some_to_file()
495 to -= howmuch; in copy_some_to_file()
[all …]
/dports/science/hdf5/hdf5-1.10.6/tools/src/h5jam/
H A Dh5jam.c419 ssize_t howmuch = 0; in copy_some_to_file() local
442 howmuch = limit; in copy_some_to_file()
445 if(0 == howmuch) in copy_some_to_file()
451 if (howmuch > 512) { in copy_some_to_file()
456 to = toend - howmuch; in copy_some_to_file()
460 while (howmuch > 0) { in copy_some_to_file()
464 if (howmuch > 512) { in copy_some_to_file()
482 howmuch -= nchars; in copy_some_to_file()
483 if(howmuch > 512) { in copy_some_to_file()
488 to -= howmuch; in copy_some_to_file()
[all …]
/dports/news/trn/trn-3.6/
H A Dartsrch.c79 howmuch = ARTSCOPE_SUBJECT;
84 howmuch = art_howmuch;
99 howmuch = ARTSCOPE_FROM;
102 howmuch = ARTSCOPE_ONEHDR;
114 howmuch = ARTSCOPE_HEAD;
117 howmuch = ARTSCOPE_BODY_NOSIG;
120 howmuch = ARTSCOPE_BODY;
123 howmuch = ARTSCOPE_ARTICLE;
161 art_howmuch = howmuch;
259 if (howmuch != ARTSCOPE_SUBJECT) {
[all …]
/dports/games/sjeng/Sjeng-Free-11.2/
H A Dpartner.c84 char howmuch[80] = "is...uh...what did you say?\n"; in HandlePtell() local
167 strcpy(howmuch, "mates"); in HandlePtell()
192 printf("tellics ptell Ok, Knight %s\n", howmuch); in HandlePtell()
207 printf("tellics ptell Ok, Bishop %s\n", howmuch); in HandlePtell()
222 printf("tellics ptell Ok, Rook %s\n", howmuch); in HandlePtell()
231 printf("tellics ptell Ok, Queen %s\n", howmuch); in HandlePtell()
252 printf("tellics ptell Ok, Pawn %s\n", howmuch); in HandlePtell()
284 printf("tellics ptell Ok, Heavy %s\n", howmuch); in HandlePtell()
344 printf("tellics ptell Ok, Knight %s\n", howmuch); in HandlePtell()
374 printf("tellics ptell Ok, Rook %s\n", howmuch); in HandlePtell()
[all …]
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gdb/sim/z8k/
H A Diface.c70 sim_write (sd, where, what, howmuch) in sim_write() argument
74 int howmuch;
78 for (i = 0; i < howmuch; i++)
80 return howmuch;
84 sim_read (sd, where, what, howmuch) in sim_read() argument
88 int howmuch;
92 for (i = 0; i < howmuch; i++)
94 return howmuch;
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gdb/sim/z8k/
H A Diface.c70 sim_write (sd, where, what, howmuch) in sim_write() argument
74 int howmuch;
78 for (i = 0; i < howmuch; i++)
80 return howmuch;
84 sim_read (sd, where, what, howmuch) in sim_read() argument
88 int howmuch;
92 for (i = 0; i < howmuch; i++)
94 return howmuch;
/dports/sysutils/pciutils/pciutils-3.7.0/
H A Dcommon.c30 xmalloc(size_t howmuch) in xmalloc() argument
32 void *p = malloc(howmuch); in xmalloc()
34 die("Unable to allocate %d bytes of memory", (int) howmuch); in xmalloc()
39 xrealloc(void *ptr, size_t howmuch) in xrealloc() argument
41 void *p = realloc(ptr, howmuch); in xrealloc()
43 die("Unable to allocate %d bytes of memory", (int) howmuch); in xrealloc()
/dports/devel/libpci/pciutils-3.7.0/
H A Dcommon.c30 xmalloc(size_t howmuch) in xmalloc() argument
32 void *p = malloc(howmuch); in xmalloc()
34 die("Unable to allocate %d bytes of memory", (int) howmuch); in xmalloc()
39 xrealloc(void *ptr, size_t howmuch) in xrealloc() argument
41 void *p = realloc(ptr, howmuch); in xrealloc()
43 die("Unable to allocate %d bytes of memory", (int) howmuch); in xrealloc()
/dports/games/opentyrian/opentyrian-opentyrian-77a8715634e3/src/
H A Dloudness.c49 void audio_cb( void *userdata, unsigned char *feedme, int howmuch );
86 void audio_cb( void *user_data, unsigned char *sdl_buffer, int howmuch ) in audio_cb() argument
91 howmuch /= audio_cvt.len_mult; in audio_cb()
93 audio_cvt.len = howmuch; in audio_cb()
103 long remaining = howmuch / BYTES_PER_SAMPLE; in audio_cb()
129 int qu = howmuch / BYTES_PER_SAMPLE; in audio_cb()
144 …unsigned int qu = ((unsigned)howmuch > channel_len[ch] ? channel_len[ch] : (unsigned)howmuch) / BY… in audio_cb()
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gfortran.dg/
H A Darray_alloc_2.f9026 function f2 (howmuch)
27 integer :: i, howmuch local
28 integer, dimension (4:howmuch) :: f2
29 forall (i = 4:howmuch) f2 (i) = i * 100 - 300

12345678910>>...19