HomeSort by relevance Sort by last modified time
    Searched defs:Block (Results 1 - 25 of 325) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/crypto/cipher/
cipher.go 5 // Package cipher implements standard block cipher modes that can be wrapped
6 // around low-level block cipher implementations.
11 // A Block represents an implementation of block cipher
15 type Block interface {
16 // BlockSize returns the cipher's block size.
19 // Encrypt encrypts the first block in src into dst.
23 // Decrypt decrypts the first block in src into dst.
38 // A BlockMode represents a block cipher running in a block-based mode (CBC
    [all...]
  /prebuilts/go/linux-x86/src/crypto/cipher/
cipher.go 5 // Package cipher implements standard block cipher modes that can be wrapped
6 // around low-level block cipher implementations.
11 // A Block represents an implementation of block cipher
15 type Block interface {
16 // BlockSize returns the cipher's block size.
19 // Encrypt encrypts the first block in src into dst.
23 // Decrypt decrypts the first block in src into dst.
38 // A BlockMode represents a block cipher running in a block-based mode (CBC
    [all...]
  /external/skia/src/sksl/ir/
SkSLBlock.h 17 * A block of multiple statements functioning as a single statement.
19 struct Block : public Statement {
20 Block(Position position, std::vector<std::unique_ptr<Statement>> statements,
  /art/runtime/
signal_set.h 40 void Block() {
  /external/skia/src/core/
SkVarAlloc.cpp 12 struct SkVarAlloc::Block {
13 Block* prev;
16 static Block* Alloc(Block* prev, size_t size) {
17 SkASSERT(size >= sizeof(Block));
18 Block* b = (Block*)sk_malloc_throw(size);
39 Block* b = fBlock;
41 Block* prev = b->prev;
51 while (alloc < bytes + sizeof(Block)) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/internal/cfg/
cfg.go 59 Blocks []*Block // block[0] is entry; order otherwise undefined
62 // A Block represents a basic block: a list of statements and
65 // A block may have 0-2 successors: zero for a return block or a block
67 // normal (jump) block; and two for a conditional (if) block.
68 type Block struct
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/internal/cfg/
cfg.go 59 Blocks []*Block // block[0] is entry; order otherwise undefined
62 // A Block represents a basic block: a list of statements and
65 // A block may have 0-2 successors: zero for a return block or a block
67 // normal (jump) block; and two for a conditional (if) block.
68 type Block struct
    [all...]
  /external/valgrind/none/tests/amd64/
movbe.c 13 typedef struct { UChar cs[40]; } Block;
15 void showBlock ( char* msg, Block* b )
31 void randBlock ( Block* b )
35 for (i = 0; i < sizeof(Block); i++)
46 Block* b = memalign32(sizeof(Block)); \
avx-1.c 16 typedef struct { YMM a1; YMM a2; YMM a3; YMM a4; ULong u64; } Block;
28 void showBlock ( char* msg, Block* block )
31 printf(" "); showYMM(&block->a1); printf("\n");
32 printf(" "); showYMM(&block->a2); printf("\n");
33 printf(" "); showYMM(&block->a3); printf("\n");
34 printf(" "); showYMM(&block->a4); printf("\n");
35 printf(" %016llx\n", block->u64);
45 void randBlock ( Block* b )
49 for (i = 0; i < sizeof(Block); i++
    [all...]
  /external/valgrind/none/tests/x86/
movbe.c 13 typedef struct { UChar cs[40]; } Block;
15 void showBlock ( char* msg, Block* b )
31 void randBlock ( Block* b )
35 for (i = 0; i < sizeof(Block); i++)
46 Block* b = memalign32(sizeof(Block)); \
  /system/update_engine/payload_generator/
inplace_generator.h 54 // Represents a disk block on the install partition.
55 struct Block {
56 // During install, each block on the install partition will be written
60 // A Block object tells which vertex will read or write this block
62 // Generally, there will be a vector of Block objects whose length
64 Block() : reader(Vertex::kInvalidIndex), writer(Vertex::kInvalidIndex) {}
97 // Creates all the edges for the graph. Writers of a block point to
98 // readers of the same block. This is because for an edge A->B, B
101 const std::vector<Block>& blocks)
    [all...]
  /external/deqp/framework/delibs/decpp/
deAppendList.hpp 46 * current block runs out, allocation of next block will happen in a single
47 * thread and block others from inserting further elements until completed.
68 struct Block
72 Block* volatile next;
74 Block (size_t blockNdx_, size_t size)
82 ~Block (void)
90 Block* m_first;
91 Block* volatile m_last;
98 Iterator (Block* curBlock_, size_t blockSize_, size_t slotNdx_
    [all...]
  /frameworks/base/tools/aapt2/util/
BigBuffer.h 35 * block is allocated and appended to the end of the list.
40 * A contiguous block of allocated memory.
42 struct Block {
58 * The size of the memory block allocation.
63 typedef std::vector<Block>::const_iterator const_iterator;
66 * Create a BigBuffer with block allocation sizes
86 * Returns the next block available and puts the size in out_count.
106 * Pads the block with 'bytes' bytes of zero values.
111 * Pads the block so that it aligns on a 4 byte boundary.
133 std::vector<Block> blocks_
157 Block& block = blocks_.back(); local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
block.go 9 // Block represents a basic block in the control flow graph of a function.
10 type Block struct {
11 // A unique identifier for the block. The system will attempt to allocate
15 // Line number for block's control operation
18 // The kind of block this is.
28 // After flagalloc, records whether flags are live at the end of the block.
31 // Subsequent blocks, if any. The number and order depend on the block kind.
35 // The order is significant to Phi nodes in the block.
37 // arguments by block id and have this field computed explicitly when needed
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/pem/
pem.go 19 // A Block represents a PEM encoded structure.
27 type Block struct {
74 // Decode will find the next PEM formatted block (certificate, private key
75 // etc) in the input. It returns that block and the remainder of the input. If
78 func Decode(data []byte) (p *Block, rest []byte) {
96 p = &Block{
161 // leading newline if the PEM block was empty.
167 func decodeError(data, rest []byte) (*Block, []byte) {
169 // ultimately invalid PEM block. We need to start over from a new
173 // the preamble line for the any subsequent block. Thus, we will alway
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
block.go 9 // Block represents a basic block in the control flow graph of a function.
10 type Block struct {
11 // A unique identifier for the block. The system will attempt to allocate
15 // Line number for block's control operation
18 // The kind of block this is.
28 // After flagalloc, records whether flags are live at the end of the block.
31 // Subsequent blocks, if any. The number and order depend on the block kind.
35 // The order is significant to Phi nodes in the block.
37 // arguments by block id and have this field computed explicitly when needed
    [all...]
  /prebuilts/go/linux-x86/src/encoding/pem/
pem.go 19 // A Block represents a PEM encoded structure.
27 type Block struct {
74 // Decode will find the next PEM formatted block (certificate, private key
75 // etc) in the input. It returns that block and the remainder of the input. If
78 func Decode(data []byte) (p *Block, rest []byte) {
96 p = &Block{
161 // leading newline if the PEM block was empty.
167 func decodeError(data, rest []byte) (*Block, []byte) {
169 // ultimately invalid PEM block. We need to start over from a new
173 // the preamble line for the any subsequent block. Thus, we will alway
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsHcMem.c 19 Allocate a block of memory to be used by the buffer pool.
23 @return The allocated memory block or NULL if failed.
31 UFS_PEIM_MEM_BLOCK *Block;
37 Block = NULL;
48 // bytes of memory in the memory block.
52 Block = (UFS_PEIM_MEM_BLOCK*)(UINTN)TempPtr;
53 Block->BufLen = EFI_PAGES_TO_SIZE (Pages);
54 Block->BitsLen = Block->BufLen / (UFS_PEIM_MEM_UNIT * 8);
56 Status = PeiServicesAllocatePool (Block->BitsLen, &TempPtr);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootClient.h 29 // Record the data length and start address of a data block.
33 UINT8 *Block; // If NULL, the data is in previous data block.
34 UINT8 *DataStart; // Point to somewhere in the Block
59 UINT8 *Block;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
BranchFolding.h 35 MachineBasicBlock *Block;
38 : Hash(h), Block(b) {}
41 MachineBasicBlock *getBlock() const { return Block; }
44 Block = MBB;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
UsbHcMem.c 21 Allocate a block of memory to be used by the buffer pool.
26 @return The allocated memory block or NULL if failed.
35 USBHC_MEM_BLOCK *Block;
45 Block = AllocateZeroPool (sizeof (USBHC_MEM_BLOCK));
46 if (Block == NULL) {
52 // bytes of memory in the memory block.
56 Block->BufLen = EFI_PAGES_TO_SIZE (Pages);
57 Block->BitsLen = Block->BufLen / (USBHC_MEM_UNIT * 8);
58 Block->Bits = AllocateZeroPool (Block->BitsLen);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
UsbHcMem.c 21 Allocate a block of memory to be used by the buffer pool.
27 @return The allocated memory block or NULL if failed.
37 USBHC_MEM_BLOCK *Block;
60 // bytes of memory in the memory block.
64 Block = (USBHC_MEM_BLOCK*)(UINTN)TempPtr;
65 Block->BufLen = EFI_PAGES_TO_SIZE (Pages);
66 Block->BitsLen = Block->BufLen / (USBHC_MEM_UNIT * 8);
68 PageNumber = (Block->BitsLen)/PAGESIZE +1;
80 Block->Bits = (UINT8 *)(UINTN)TempPtr;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
UsbHcMem.c 20 Allocate a block of memory to be used by the buffer pool.
25 @return The allocated memory block or NULL if failed.
34 USBHC_MEM_BLOCK *Block;
44 Block = AllocateZeroPool (sizeof (USBHC_MEM_BLOCK));
45 if (Block == NULL) {
51 // bytes of memory in the memory block.
55 Block->BufLen = EFI_PAGES_TO_SIZE (Pages);
56 Block->BitsLen = Block->BufLen / (USBHC_MEM_UNIT * 8);
57 Block->Bits = AllocateZeroPool (Block->BitsLen);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/
UsbHcMem.c 21 Allocate a block of memory to be used by the buffer pool.
25 @return Pointer to the allocated memory block or NULL if failed.
33 USBHC_MEM_BLOCK *Block;
52 // bytes of memory in the memory block.
56 Block = (USBHC_MEM_BLOCK *) (UINTN) TempPtr;
57 Block->BufLen = EFI_PAGES_TO_SIZE (Pages);
58 Block->BitsLen = Block->BufLen / (USBHC_MEM_UNIT * 8);
60 PageNumber = EFI_SIZE_TO_PAGES (Block->BitsLen);
72 Block->Bits = (UINT8 *) (UINTN) TempPtr;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/
Mtftp4Impl.c 35 MTFTP4_BLOCK_RANGE *Block;
73 Block = NET_LIST_USER_STRUCT (Entry, MTFTP4_BLOCK_RANGE, Link);
75 FreePool (Block);
    [all...]

Completed in 1360 milliseconds

1 2 3 4 5 6 7 8 91011>>