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

1 2 3 4 5 6 7 8 91011>>

  /src/external/ibm-public/postfix/dist/mantools/
postconffix 30 # Pass through comments and blank linkes before a text block.
36 # Gobble up the next text block.
37 $block = "";
40 $block .= $_;
43 # Don't touch a text block starting with < in column zero.
44 if ($block =~ /^</) {
45 print "$block\n";
48 # Meta block.
49 elsif ($block =~ /^%/) {
50 print "$block\n"
    [all...]
postconf2man 27 # Skip blank lines before text block.
30 # Gobble up the next text block.
31 $block = "";
34 $block .= $_;
39 #$block =~ s/\n\./\n\\\&./g;
40 $block =~ s/\n\./\n\134\&./g;
41 $block =~ s/\n'/\n\134\&'/g;
42 if ($block =~ /<H2>/) {
43 $block =~ s/<H2><a[^>]+>([^<]+)<\/a><\/H2>/\n.SH \1\n/g;
44 $block =~ tr/a-z/A-Z/
    [all...]
postconf2html 40 # Skip blank lines before text block.
43 # Gobble up the next text block.
44 $block = "";
48 $block .= $_;
52 { $comment = 0; $block =~ s/<!--.*-->//sg; }
56 $block =~ s/<\s*nroffescape[^>]+>//g unless $opt_n;
59 if ($block =~ /^\s/) {
60 $block =~ s/^\s+//s;
61 next if ($block eq "");
64 # Don't touch a text block starting with < in column zero
    [all...]
  /src/external/gpl3/gcc/dist/contrib/reghunt/examples/
29478.c 1 struct block;
4 remove_out_of_scope_renamings (struct block *current_block)
9 ada_lookup_symbol_list (const struct block *block0)
11 return remove_out_of_scope_renamings ((struct block *) block0);
  /src/external/gpl3/gcc.old/dist/contrib/reghunt/examples/
29478.c 1 struct block;
4 remove_out_of_scope_renamings (struct block *current_block)
9 ada_lookup_symbol_list (const struct block *block0)
11 return remove_out_of_scope_renamings ((struct block *) block0);
  /src/external/gpl2/mkhybrid/dist/libhfs_iso/
block.h 20 int b_readlb(hfsvol *, unsigned long, block *);
21 int b_writelb(hfsvol *, unsigned long, block *);
23 int b_readab(hfsvol *, unsigned int, unsigned int, block *);
24 int b_writeab(hfsvol *, unsigned int, unsigned int, block *);
  /src/external/public-domain/xz/dist/src/liblzma/common/
block_util.c 18 lzma_block_compressed_size(lzma_block *block, lzma_vli unpadded_size)
21 if (lzma_block_unpadded_size(block) == 0)
24 const uint32_t container_size = block->header_size
25 + lzma_check_size(block->check);
32 // If Compressed Size was present in Block Header,
35 if (block->compressed_size != LZMA_VLI_UNKNOWN
36 && block->compressed_size != compressed_size)
39 block->compressed_size = compressed_size;
46 lzma_block_unpadded_size(const lzma_block *block)
54 if (block == NULL || block->version >
    [all...]
block_header_encoder.c 4 /// \brief Encodes Block Header for .xz files
18 lzma_block_header_size(lzma_block *block)
20 if (block->version > 1)
23 // Block Header Size + Block Flags + CRC32.
27 if (block->compressed_size != LZMA_VLI_UNKNOWN) {
28 const uint32_t add = lzma_vli_size(block->compressed_size);
29 if (add == 0 || block->compressed_size == 0)
36 if (block->uncompressed_size != LZMA_VLI_UNKNOWN) {
37 const uint32_t add = lzma_vli_size(block->uncompressed_size)
    [all...]
block_header_decoder.c 4 /// \brief Decodes Block Header from .xz files
18 free_properties(lzma_block *block, const lzma_allocator *allocator)
24 lzma_free(block->filters[i].options, allocator);
25 block->filters[i].id = LZMA_VLI_UNKNOWN;
26 block->filters[i].options = NULL;
34 lzma_block_header_decode(lzma_block *block,
45 block->filters[i].id = LZMA_VLI_UNKNOWN;
46 block->filters[i].options = NULL;
51 if (block->version > 1)
52 block->version = 1
    [all...]
  /src/sys/dev/hdaudio/
eldreg.h 53 #define ELD_VER(block) (((block)->header.flags >> 3) & 0x1f)
56 #define ELD_CEA_EDID_VER(block) (((block)->flags[0] >> 5) & 0x07)
61 #define ELD_MNL(block) (((block)->flags[0] >> 0) & 0x1f)
62 #define ELD_SAD_COUNT(block) (((block)->flags[1] >> 4) & 0x0f)
63 #define ELD_CONN_TYPE(block) (((block)->flags[1] >> 2) & 0x03
    [all...]
hdafg_dd.c 50 struct eld_baseline_block *block = &hdi->eld; local
59 if (datalen < sizeof(block->header)) {
66 memcpy(&block->header, data, sizeof(block->header));
67 data += sizeof(block->header);
68 datalen -= sizeof(block->header);
70 if (datalen < block->header.baseline_eld_len * 4 ||
71 datalen < sizeof(*block) - sizeof(block->header)) {
78 datalen = block->header.baseline_eld_len * 4
    [all...]
  /src/sys/external/bsd/drm2/include/linux/
oom.h 38 register_oom_notifier(struct notifier_block *block)
44 unregister_oom_notifier(struct notifier_block *block)
  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
cipher_desx.c 20 IMPLEMENT_tdes_cipher(desx, DESX, cbc, CBC, TDES_FLAGS, 64 * 3, 64, 64, block);
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
cipher_desx.c 20 IMPLEMENT_tdes_cipher(desx, DESX, cbc, CBC, TDES_FLAGS, 64*3, 64, 64, block);
  /src/crypto/external/apache2/openssl/dist/demos/guide/
Makefile 5 # LD_LIBRARY_PATH=../.. ./tls-client-block www.example.com 443
7 TESTS = tls-client-block \
8 tls-server-block \
9 quic-client-block \
11 tls-client-non-block \
12 quic-server-block \
13 quic-server-non-block \
14 quic-client-non-block
22 tls-client-block: tls-client-block.
    [all...]
build.info 5 # LD_LIBRARY_PATH=../.. ./tls-client-block www.example.com 443
7 PROGRAMS{noinst} = tls-client-block \
8 quic-client-block \
10 tls-client-non-block \
11 quic-client-non-block \
12 quic-server-block \
13 quic-server-non-block \
14 quic-client-non-block \
16 INCLUDE[tls-client-block]=../../include
17 SOURCE[tls-client-block]=tls-client-block.
    [all...]
  /src/external/mpl/bind/dist/lib/isc/
mutexblock.c 22 isc_mutexblock_init(isc_mutex_t *block, unsigned int count) {
26 isc_mutex_init(&block[i]);
31 isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count) {
35 isc_mutex_destroy(&block[i]);
  /src/external/mpl/dhcp/bind/dist/lib/isc/
mutexblock.c 22 isc_mutexblock_init(isc_mutex_t *block, unsigned int count) {
26 isc_mutex_init(&block[i]);
31 isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count) {
35 isc_mutex_destroy(&block[i]);
  /src/external/mit/isl/dist/
isl_blk.c 18 struct isl_blk block; local
19 block.size = 0;
20 block.data = NULL;
21 return block;
24 static int isl_blk_is_empty(struct isl_blk block)
26 return block.size == 0 && block.data == NULL;
31 struct isl_blk block; local
32 block.size = -1;
33 block.data = NULL
77 struct isl_blk block; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_buddy.c 59 struct i915_buddy_block *block; local
61 block = kmem_cache_zalloc(global.slab_blocks, GFP_KERNEL);
62 if (!block)
65 block->header = offset;
66 block->header |= order;
67 block->parent = parent;
69 return block;
72 static void i915_block_free(struct i915_buddy_block *block)
74 kmem_cache_free(global.slab_blocks, block);
77 static void mark_allocated(struct i915_buddy_block *block)
273 struct i915_buddy_block *block, *on; local
293 struct i915_buddy_block *block = NULL; local
353 struct i915_buddy_block *block; local
    [all...]
i915_buddy.h 30 * While the block is allocated by the user through i915_buddy_alloc*,
32 * a list, if so desired. As soon as the block is freed with
53 * address space. This gives us a simple way of finding a buddy block
55 * block. Nodes are either allocated or free, in which case they will
73 i915_buddy_block_offset(struct i915_buddy_block *block)
75 return block->header & I915_BUDDY_HEADER_OFFSET;
79 i915_buddy_block_order(struct i915_buddy_block *block)
81 return block->header & I915_BUDDY_HEADER_ORDER;
85 i915_buddy_block_state(struct i915_buddy_block *block)
87 return block->header & I915_BUDDY_HEADER_STATE
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
Index_Internal.h 24 #define INVOKE_BLOCK2(block, arg1, arg2) block(arg1, arg2)
28 // define and call the block manually.
30 #define INVOKE_BLOCK2(block, arg1, arg2) block->invoke(block, arg1, arg2)
  /src/external/gpl2/libmalloc/dist/
malloc-find.c 3 /* Find the starting address of a malloc'd block, from anywhere inside it.
36 __malloc_size_t block = BLOCK (ptr); local
37 int type = _heapinfo[block].busy.type;
42 __malloc_ptrdiff_t sizevalue = _heapinfo[block].busy.info.size;
47 block += sizevalue;
49 /* BLOCK is now the first block of the object.
51 return ADDRESS (block);
55 /* Get the size of fragments in this block. *
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
block.c 0 /* Block-related functions for the GNU debugger, GDB.
20 #include "block.h"
29 /* This is used by struct block to store namespace-related info for
39 /* See block.h. */
42 block::objfile () const
53 /* See block. */
56 block::gdbarch () const
64 /* See block.h. */
67 block::contains (const struct block *a, bool allow_nested) cons
358 const block *block = this; local
370 const block *block = this; local
383 const block *block = this; local
519 const struct block *block; local
561 const struct block *block; local
    [all...]
  /src/external/bsd/nsd/dist/simdzone/src/generic/
name.h 20 name_block_t *block, const char *text, uint8_t *wire)
25 block->backslashes = simd_find_8x32(&input, '\\');
26 block->dots = simd_find_8x32(&input, '.');
39 name_block_t block; local
46 copy_name_block(&block, text, wire);
55 if (unlikely(block.backslashes & mask))
59 if (unlikely(block.dots & 1llu))
63 block.dots &= mask;
64 carry = (block.dots >> (length - 1));
67 if (unlikely(block.dots & (block.dots >> 1))
    [all...]

Completed in 34 milliseconds

1 2 3 4 5 6 7 8 91011>>