HomeSort by: relevance | last modified time | path
    Searched refs:obs (Results 1 - 25 of 88) sorted by relevancy

1 2 3 4

  /src/sys/arch/next68k/stand/boot/
installboot.sh 18 dd if="$1" of="$2" obs=1024 seek=32 conv=osync
19 dd if="$1" of="$2" obs=1024 seek=96 conv=osync
  /src/external/gpl3/gcc.old/dist/gcc/
data-streamer-out.cc 33 /* Adds a new block to output stream OBS. */
36 lto_append_block (struct lto_output_stream *obs)
40 gcc_assert (obs->left_in_block == 0);
42 if (obs->first_block == NULL)
46 obs->block_size = 1024;
47 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
48 obs->first_block = new_block;
55 obs->block_size *= 2;
56 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
60 tptr = obs->current_block
    [all...]
data-streamer.h 207 streamer_write_char_stream (struct lto_output_stream *obs, char c)
210 if (obs->left_in_block == 0)
211 lto_append_block (obs);
214 char *current_pointer = obs->current_pointer;
216 obs->current_pointer = current_pointer;
217 obs->total_size++;
218 obs->left_in_block--;
232 /* Output VAL into OBS and verify it is in range MIN...MAX that is supposed
237 streamer_write_hwi_in_range (struct lto_output_stream *obs,
248 streamer_write_uhwi_stream (obs, (unsigned HOST_WIDE_INT) val)
    [all...]
lto-section-out.cc 117 /* Write all of the chars in OBS to the assembler. Recycle the blocks
118 in obs as this is being done. */
121 lto_write_stream (struct lto_output_stream *obs)
126 if (!obs->first_block)
129 for (block = obs->first_block; block; block = next_block)
139 num_chars -= obs->left_in_block;
  /src/external/gpl3/gcc/dist/gcc/
data-streamer-out.cc 35 /* Adds a new block to output stream OBS. */
38 lto_append_block (struct lto_output_stream *obs)
42 gcc_assert (obs->left_in_block == 0);
44 if (obs->first_block == NULL)
48 obs->block_size = 1024;
49 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
50 obs->first_block = new_block;
57 obs->block_size *= 2;
58 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
62 tptr = obs->current_block
    [all...]
data-streamer.h 212 streamer_write_char_stream (struct lto_output_stream *obs, char c)
215 if (obs->left_in_block == 0)
216 lto_append_block (obs);
219 char *current_pointer = obs->current_pointer;
221 obs->current_pointer = current_pointer;
222 obs->total_size++;
223 obs->left_in_block--;
237 /* Output VAL into OBS and verify it is in range MIN...MAX that is supposed
242 streamer_write_hwi_in_range (struct lto_output_stream *obs,
253 streamer_write_uhwi_stream (obs, (unsigned HOST_WIDE_INT) val)
    [all...]
lto-section-out.cc 117 /* Write all of the chars in OBS to the assembler. Recycle the blocks
118 in obs as this is being done. */
121 lto_write_stream (struct lto_output_stream *obs)
126 if (!obs->first_block)
129 for (block = obs->first_block; block; block = next_block)
139 num_chars -= obs->left_in_block;
  /src/distrib/sun3/
MakeBootTape 22 dd if=tapeboot of=$T obs=8k conv=sync
26 dd of=$T obs=8k conv=sync
30 dd of=$T obs=8k conv=sync
34 dd of=$T obs=8k
MakeInstTape 22 dd if=../../binary/sets/${f}.tgz of=$T obs=8k conv=sync
  /src/distrib/sun2/
MakeBootTape 21 dd if=tapeboot of=$T obs=8k conv=sync
25 dd of=$T obs=8k conv=sync
29 dd of=$T obs=8k
MakeInstTape 22 dd if=../../binary/sets/${f}.tgz of=$T obs=8k conv=sync
  /src/games/caesar/
caesar.c 130 unsigned int obs[NCHARS]; local
141 (void)memset(obs, 0, sizeof(obs));
150 obs[inbuf[i]]++;
161 dot += (obs[upper[i]] + obs[lower[i]])
  /src/external/gpl3/binutils/dist/gas/
output-file.c 73 struct obstack **obs; local
95 obs = obstack_finish (&notes);
120 subsegs_end (obs);
subsegs.c 49 subsegs_end (struct obstack **obs)
51 for (; *obs; obs++)
52 _obstack_free (*obs, NULL);
  /src/external/gpl3/binutils.old/dist/gas/
output-file.c 73 struct obstack **obs; local
95 obs = obstack_finish (&notes);
120 subsegs_end (obs);
subsegs.c 49 subsegs_end (struct obstack **obs)
51 for (; *obs; obs++)
52 _obstack_free (*obs, NULL);
  /src/crypto/external/apache2/openssl/dist/crypto/bio/
bf_lbuf.c 227 int obs; local
252 obs = (int)num;
254 if ((obs > DEFAULT_LINEBUFFER_SIZE) && (obs != ctx->obuf_size)) {
255 p = OPENSSL_malloc((size_t)obs);
260 if (ctx->obuf_len > obs) {
261 ctx->obuf_len = obs;
266 ctx->obuf_size = obs;
bf_buff.c 242 int ibs, obs; local
308 obs = ctx->obuf_size;
312 obs = (int)num;
316 obs = (int)num;
327 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size)) {
347 ctx->obuf_size = obs;
  /src/crypto/external/bsd/openssl/dist/crypto/bio/
bf_lbuf.c 210 int obs; local
235 obs = (int)num;
237 if ((obs > DEFAULT_LINEBUFFER_SIZE) && (obs != ctx->obuf_size)) {
238 p = OPENSSL_malloc((size_t)obs);
243 if (ctx->obuf_len > obs) {
244 ctx->obuf_len = obs;
249 ctx->obuf_size = obs;
bf_buff.c 242 int ibs, obs; local
308 obs = ctx->obuf_size;
312 obs = (int)num;
316 obs = (int)num;
327 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size)) {
347 ctx->obuf_size = obs;
  /src/crypto/external/bsd/openssl.old/dist/crypto/bio/
bf_lbuf.c 212 int obs; local
235 obs = (int)num;
237 if ((obs > DEFAULT_LINEBUFFER_SIZE) && (obs != ctx->obuf_size)) {
243 if (ctx->obuf_len > obs) {
244 ctx->obuf_len = obs;
249 ctx->obuf_size = obs;
bf_buff.c 244 int ibs, obs; local
308 obs = ctx->obuf_size;
312 obs = (int)num;
316 obs = (int)num;
325 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size)) {
345 ctx->obuf_size = obs;
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
LiveVariables.h 98 void runOnAllBlocks(Observer &obs);
  /src/crypto/external/apache2/openssl/dist/crypto/comp/
c_zlib.c 626 int ibs, obs; local
650 obs = -1;
656 obs = (int)num;
659 obs = ibs;
668 if (obs != -1) {
671 ctx->obufsize = obs;
  /src/crypto/external/bsd/openssl/dist/crypto/comp/
c_zlib.c 551 int ibs, obs; local
573 obs = -1;
579 obs = (int)num;
582 obs = ibs;
591 if (obs != -1) {
594 ctx->obufsize = obs;

Completed in 45 milliseconds

1 2 3 4