Searched refs:Block (Results 1 - 25 of 118) sorted by relevance

12345

/freebsd-10.1-release/contrib/telnet/libtelnet/
H A Dkey-proto.h62 void key_lookup(unsigned char *, Block);
63 void key_stream_init(Block, Block, int);
H A Dencrypt.h65 typedef unsigned char Block[8]; typedef
68 typedef struct { Block __; } Schedule[16];
76 #define SAMEKEY(k1, k2) (!bcmp((void *)k1, (void *)k2, sizeof(Block)))
H A Denc_des.c68 Block krbdes_key;
70 Block temp_feed;
76 Block str_output;
77 Block str_feed;
78 Block str_iv;
79 Block str_ikey;
115 void fb64_stream_iv(Block, struct stinfo *);
121 void fb64_stream_key(Block, struct stinfo *);
210 des_random_key((Block *)fbp->temp_feed);
211 des_ecb_encrypt((Block *)fb
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DBlock.h1 //===-- Block.h -------------------------------------------------*- C++ -*-===//
25 /// @class Block Block.h "lldb/Symbol/Block.h"
29 /// Block objects. The BlockList object contains a section offset
30 /// address range, and Block objects contain one or more ranges
42 class Block : class in namespace:lldb_private
74 Block (lldb::user_id_t uid);
79 virtual ~Block ();
125 virtual Block *
[all...]
H A DSymbolContextScope.h37 /// @li Block
52 /// variable. A static function variables, can the Block scope
109 virtual Block *
H A DSymbolContext.h75 /// A Block pointer to the deepest block for this context.
88 Block *block = NULL,
97 Block *block = NULL,
245 Block *
346 Block * block; ///< The Block for a given query
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Bin/
H A Dhotspot.d61 @Block[args[1]->dev_statname, args[1]->dev_major, args[1]->dev_minor] =
70 printa("Disk: %s Major,Minor: %d,%d\n%@d\n", @Block);
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Disk/
H A Dhotspot.d61 @Block[args[1]->dev_statname, args[1]->dev_major, args[1]->dev_minor] =
70 printa("Disk: %s Major,Minor: %d,%d\n%@d\n", @Block);
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 bool insert(const CFGBlock *Block) { argument
52 // make sure that Block is non-null. Moreover, the CFGBlock iterator will
55 if (Block == 0)
57 if (VisitedBlockIDs.test(Block->getBlockID()))
59 VisitedBlockIDs.set(Block->getBlockID());
65 /// loop. Block must not be null.
66 bool alreadySet(const CFGBlock *Block) { argument
67 return VisitedBlockIDs.test(Block->getBlockID());
H A DConsumed.h217 void addInfo(const CFGBlock *Block, ConsumedStateMap *StateMap,
219 void addInfo(const CFGBlock *Block, ConsumedStateMap *StateMap);
221 ConsumedStateMap* borrowInfo(const CFGBlock *Block);
223 void discardInfo(const CFGBlock *Block);
225 ConsumedStateMap* getInfo(const CFGBlock *Block);
228 bool isBackEdgeTarget(const CFGBlock *Block);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DBlock.cpp1 //===-- Block.cpp -----------------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Block.h"
25 Block::Block(lldb::user_id_t uid) : function in class:Block
38 Block::~Block ()
43 Block::GetDescription(Stream *s, Function *function, lldb::DescriptionLevel level, Target *target) const
73 Block::Dump(Stream *s, addr_t base_addr, int32_t depth, bool show_context) const
77 Block *parent = GetParent();
88 *s << "Block" << ((cons
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBlock.h106 lldb_private::Block *
110 SetPtr (lldb_private::Block *lldb_object_ptr);
112 SBBlock (lldb_private::Block *lldb_object_ptr);
117 lldb_private::Block *m_opaque_ptr;
/freebsd-10.1-release/lib/libblocksruntime/
H A DMakefile10 INCS= Block.h Block_private.h
/freebsd-10.1-release/sbin/dump/
H A Dcache.c4 * Block cache for dump
37 typedef struct Block { struct
38 struct Block *b_HNext; /* must be first field */
41 } Block; typedef in typeref:struct:Block
47 static Block **BlockHash;
57 Block *base;
67 base = calloc(sizeof(Block), NBlocks);
68 BlockHash = calloc(sizeof(Block *), HSize);
83 Block *blk;
84 Block **pbl
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Analysis/
H A DReachableCode.cpp48 bool isDeadCodeRoot(const CFGBlock *Block);
50 const Stmt *findDeadCode(const CFGBlock *Block);
65 bool DeadCodeScan::isDeadCodeRoot(const clang::CFGBlock *Block) { argument
68 for (CFGBlock::const_pred_iterator I = Block->pred_begin(),
69 E = Block->pred_end(); I != E; ++I) {
96 const Stmt *DeadCodeScan::findDeadCode(const clang::CFGBlock *Block) { argument
97 for (CFGBlock::const_iterator I = Block->begin(), E = Block->end(); I!=E; ++I)
104 if (CFGTerminator T = Block->getTerminator()) {
129 const CFGBlock *Block local
[all...]
H A DCFG.cpp296 CFGBlock *Block; member in class:__anon3154::CFGBuilder
339 Block(NULL), Succ(NULL),
426 return Block;
429 void autoCreateBlock() { if (!Block) Block = createBlock(); }
653 Block = NULL; // the EXIT block is empty. Create all other blocks lazily.
740 return Block;
761 appendInitializer(Block, I);
772 return Block;
855 Block
[all...]
H A DConsumed.cpp57 static SourceLocation getFirstStmtLoc(const CFGBlock *Block) { argument
60 for (CFGBlock::const_iterator BI = Block->begin(), BE = Block->end();
66 // Block is empty.
68 if (Block->succ_size() == 1 && *Block->succ_begin())
69 return getFirstStmtLoc(*Block->succ_begin());
74 static SourceLocation getLastStmtLoc(const CFGBlock *Block) { argument
77 if (const Stmt *StmtNode = Block->getTerminator()) {
80 for (CFGBlock::const_reverse_iterator BI = Block
1085 addInfo(const CFGBlock *Block, ConsumedStateMap *StateMap, bool &AlreadyOwned) argument
1105 addInfo(const CFGBlock *Block, ConsumedStateMap *StateMap) argument
1121 borrowInfo(const CFGBlock *Block) argument
1128 discardInfo(const CFGBlock *Block) argument
1134 getInfo(const CFGBlock *Block) argument
1153 isBackEdgeTarget(const CFGBlock *Block) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/llvm-readobj/
H A DStreamWriter.cpp31 ArrayRef<uint8_t> Data, bool Block) {
33 Block = true;
35 if (Block) {
30 printBinaryImpl(StringRef Label, StringRef Str, ArrayRef<uint8_t> Data, bool Block) argument
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/
H A DBranchFolding.h35 MachineBasicBlock *Block; member in class:llvm::BranchFolder::MergePotentialsElt
38 : Hash(h), Block(b) {}
41 MachineBasicBlock *getBlock() const { return Block; }
44 Block = MBB;
/freebsd-10.1-release/contrib/llvm/include/llvm/Support/
H A DMemory.h85 /// \p Block describes the memory to be released.
91 static error_code releaseMappedMemory(MemoryBlock &Block);
96 /// \p Block describes the memory block to be protected.
108 static error_code protectMappedMemory(const MemoryBlock &Block,
/freebsd-10.1-release/contrib/llvm/tools/lli/
H A DRemoteMemoryManager.cpp38 sys::MemoryBlock Block = allocateSection(Size); local
40 AllocatedSections.push_back( Allocation(Block, Alignment, true) );
42 UnmappedSections.push_back( Allocation(Block, Alignment, true) );
43 return (uint8_t*)Block.base();
54 sys::MemoryBlock Block = allocateSection(Size); local
56 AllocatedSections.push_back( Allocation(Block, Alignment, false) );
58 UnmappedSections.push_back( Allocation(Block, Alignment, false) );
59 return (uint8_t*)Block.base();
/freebsd-10.1-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZLongBranch.cpp143 void skipNonTerminators(BlockPosition &Position, MBBInfo &Block);
172 // Position describes the state immediately before Block. Update Block
176 MBBInfo &Block) {
177 if (Block.Alignment > Position.KnownBits) {
178 // When calculating the address of Block, we need to conservatively
179 // assume that Block had the worst possible misalignment.
180 Position.Address += ((uint64_t(1) << Block.Alignment) -
182 Position.KnownBits = Block.Alignment;
186 uint64_t AlignMask = (uint64_t(1) << Block
175 skipNonTerminators(BlockPosition &Position, MBBInfo &Block) argument
273 MBBInfo &Block = MBBs[I]; local
[all...]
/freebsd-10.1-release/lib/clang/liblldbSymbol/
H A DMakefile8 SRCS= Block.cpp \
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCleanup.h151 llvm::BasicBlock *Block; member in struct:clang::CodeGen::EHCatchScope::Handler
182 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) { argument
183 setHandler(I, /*catchall*/ 0, Block);
186 void setHandler(unsigned I, llvm::Value *Type, llvm::BasicBlock *Block) { argument
189 getHandlers()[I].Block = Block;
333 llvm::BasicBlock *Block) {
335 if (ExtInfo.Branches.insert(Block))
336 ExtInfo.BranchAfters.push_back(std::make_pair(Block, Index));
369 bool addBranchThrough(llvm::BasicBlock *Block) {
[all...]
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp149 void CompileUnit::addUInt(DIEBlock *Block, dwarf::Form Form, uint64_t Integer) { argument
150 addUInt(Block, (dwarf::Attribute)0, Form, Integer);
332 DIEBlock *Block) {
333 Block->ComputeSize(Asm);
334 DIEBlocks.push_back(Block); // Memoize so we can call the destructor later on.
335 Die->addValue(Attribute, Block->BestForm(), Block);
493 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); local
496 addRegisterOp(Block, Location.getReg());
498 addRegisterOffset(Block, Locatio
331 addBlock(DIE *Die, dwarf::Attribute Attribute, DIEBlock *Block) argument
516 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); local
645 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); local
782 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); local
849 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); local
1367 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); local
1474 DIEBlock *Block = getDIEBlock(); local
1586 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); local
1645 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); local
[all...]

Completed in 398 milliseconds

12345