Home
last modified time | relevance | path

Searched refs:Block (Results 1 – 25 of 198) sorted by relevance

12345678

/minix3/lib/libtelnet/
H A Denc_des.c66 Block krbdes_key;
68 Block temp_feed;
75 Block str_output;
76 Block str_feed;
77 Block str_iv;
78 Block str_ikey;
114 void fb64_stream_iv(Block, struct stinfo *);
120 void fb64_stream_key(Block *, struct stinfo *);
216 for (x = 0; x < sizeof(Block); ++x) { in fb64_start()
259 if (cnt != sizeof(Block)) { in fb64_is()
[all …]
H A Dkey-proto.h60 void key_lookup(unsigned char *, Block);
61 void key_stream_init(Block, Block, int);
H A Dencrypt.h63 #define Block des_cblock macro
70 #define SAMEKEY(k1, k2) (!bcmp((void *)k1, (void *)k2, sizeof(Block)))
/minix3/external/bsd/llvm/dist/clang/docs/
H A DBlockLanguageSpec.rst16 - 2008/8/13 --- revised, Block globals
28 The Block Type
31 Like function types, the :block-term:`Block type` is a pair consisting
44 describes a reference to a Block that, when invoked, takes two
46 returns a value of type int. The Block referenced is of opaque data
50 Block Variable Declarations
53 A :block-term:`variable with Block type` is declared using function
55 valid Block variable declarations:
63 Variadic ``...`` arguments are supported. [variadic.c] A Block that
69 A Block reference may be cast to a pointer of arbitrary type and vice
[all …]
H A DBlock-ABI-Apple.rst2 Block Implementation Specification
38 by the compiler. A ``Block`` consists of a structure of the following form:
90 ``Block`` literals may occur within functions where the structure is created in
92 ``Block`` variables of global or ``static`` local variables.
94 When a ``Block`` literal expression is evaluated the stack based structure is
100 ``Block`` structure as its first argument and the rest of the arguments (if
101 any) to the ``Block`` and executes the ``Block`` compound statement.
103 b. The ``size`` field is set to the size of the following ``Block`` literal
107 respective helper functions if they are required by the ``Block`` literal.
109 2. A stack (or global) ``Block`` literal data structure is created and
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp302 CFGBlock *Block; member in __anon557f5a500111::CFGBuilder
345 Block(nullptr), Succ(nullptr), in CFGBuilder()
497 return Block; in NYS()
500 void autoCreateBlock() { if (!Block) Block = createBlock(); } in autoCreateBlock()
984 Block = nullptr; // the EXIT block is empty. Create all other blocks lazily. in buildCFG()
1071 return Block; in addInitializer()
1090 appendInitializer(Block, I); in addInitializer()
1101 return Block; in addInitializer()
1184 Block = createNoReturnBlock(); in addAutomaticObjDtors()
1188 appendAutomaticObjDtor(Block, *I, S); in addAutomaticObjDtors()
[all …]
H A DThreadSafetyTIL.cpp174 for (auto *Block : successors()) in topologicalSort() local
175 ID = Block->topologicalSort(Blocks, ID); in topologicalSort()
267 for (auto *Block : Blocks) in renumberInstrs() local
268 InstrID = Block->renumberInstrs(InstrID); in renumberInstrs()
312 for (auto *Block : Blocks) in computeNormalForm() local
313 Block->computeDominator(); in computeNormalForm()
325 for (auto *Block : Blocks.reverse()) { in computeNormalForm() local
326 Block->computePostDominator(); in computeNormalForm()
327 computeNodeSize(Block, &BasicBlock::DominatorNode); in computeNormalForm()
331 for (auto *Block : Blocks) { in computeNormalForm() local
[all …]
H A DReachableCode.cpp365 bool isDeadCodeRoot(const CFGBlock *Block);
367 const Stmt *findDeadCode(const CFGBlock *Block);
383 bool DeadCodeScan::isDeadCodeRoot(const clang::CFGBlock *Block) { in isDeadCodeRoot() argument
386 for (CFGBlock::const_pred_iterator I = Block->pred_begin(), in isDeadCodeRoot()
387 E = Block->pred_end(); I != E; ++I) { in isDeadCodeRoot()
414 const Stmt *DeadCodeScan::findDeadCode(const clang::CFGBlock *Block) { in findDeadCode() argument
415 for (CFGBlock::const_iterator I = Block->begin(), E = Block->end(); I!=E; ++I) in findDeadCode()
422 if (CFGTerminator T = Block->getTerminator()) { in findDeadCode()
449 const CFGBlock *Block = WorkList.pop_back_val(); in scanBackwards() local
453 if (Reachable[Block->getBlockID()]) in scanBackwards()
[all …]
H A DConsumed.cpp57 static SourceLocation getFirstStmtLoc(const CFGBlock *Block) { in getFirstStmtLoc() argument
60 for (const auto &B : *Block) in getFirstStmtLoc()
66 if (Block->succ_size() == 1 && *Block->succ_begin()) in getFirstStmtLoc()
67 return getFirstStmtLoc(*Block->succ_begin()); in getFirstStmtLoc()
72 static SourceLocation getLastStmtLoc(const CFGBlock *Block) { in getLastStmtLoc() argument
75 if (const Stmt *StmtNode = Block->getTerminator()) { in getLastStmtLoc()
78 for (CFGBlock::const_reverse_iterator BI = Block->rbegin(), in getLastStmtLoc()
79 BE = Block->rend(); BI != BE; ++BI) { in getLastStmtLoc()
87 if (Block->succ_size() == 1 && *Block->succ_begin()) in getLastStmtLoc()
88 Loc = getFirstStmtLoc(*Block->succ_begin()); in getLastStmtLoc()
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZLongBranch.cpp144 void skipNonTerminators(BlockPosition &Position, MBBInfo &Block);
177 MBBInfo &Block) { in skipNonTerminators() argument
178 if (Block.Alignment > Position.KnownBits) { in skipNonTerminators()
181 Position.Address += ((uint64_t(1) << Block.Alignment) - in skipNonTerminators()
183 Position.KnownBits = Block.Alignment; in skipNonTerminators()
187 uint64_t AlignMask = (uint64_t(1) << Block.Alignment) - 1; in skipNonTerminators()
191 Block.Address = Position.Address; in skipNonTerminators()
194 Position.Address += Block.Size; in skipNonTerminators()
274 MBBInfo &Block = MBBs[I]; in initMBBInfo() local
277 Block.Alignment = MBB->getAlignment(); in initMBBInfo()
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DGCOV.cpp180 GCOVBlock &Block = *Blocks[BlockNo]; in readGCNO() local
201 Block.addLine(Line); in readGCNO()
272 GCOVBlock &Block = *Blocks[BlockNo]; in readGCDA() local
273 for (size_t EdgeNo = 0, End = Block.getNumDstEdges(); EdgeNo < End; in readGCDA()
281 Block.addCount(EdgeNo, ArcCount); in readGCDA()
284 Block.sortDstEdges(); in readGCDA()
305 for (const auto &Block : Blocks) in dump() local
306 Block->dump(); in dump()
317 for (const auto &Block : Blocks) in collectLineCounts() local
318 Block->collectLineCounts(FI); in collectLineCounts()
[all …]
/minix3/external/bsd/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 std::pair<llvm::NoneType, bool> insert(const CFGBlock *Block) { in insert() argument
55 if (!Block) in insert()
57 if (VisitedBlockIDs.test(Block->getBlockID())) in insert()
59 VisitedBlockIDs.set(Block->getBlockID()); in insert()
66 bool alreadySet(const CFGBlock *Block) { in alreadySet() argument
67 return VisitedBlockIDs.test(Block->getBlockID()); in alreadySet()
H A DConsumed.h218 void addInfo(const CFGBlock *Block, ConsumedStateMap *StateMap,
220 void addInfo(const CFGBlock *Block, ConsumedStateMap *StateMap);
222 ConsumedStateMap* borrowInfo(const CFGBlock *Block);
224 void discardInfo(const CFGBlock *Block);
226 ConsumedStateMap* getInfo(const CFGBlock *Block);
229 bool isBackEdgeTarget(const CFGBlock *Block);
/minix3/external/bsd/llvm/dist/llvm/tools/lli/
H A DRemoteMemoryManager.cpp38 sys::MemoryBlock Block = allocateSection(Size); in allocateCodeSection() local
40 AllocatedSections.push_back( Allocation(Block, Alignment, true) ); in allocateCodeSection()
42 UnmappedSections.push_back( Allocation(Block, Alignment, true) ); in allocateCodeSection()
43 return (uint8_t*)Block.base(); in allocateCodeSection()
54 sys::MemoryBlock Block = allocateSection(Size); in allocateDataSection() local
56 AllocatedSections.push_back( Allocation(Block, Alignment, false) ); in allocateDataSection()
58 UnmappedSections.push_back( Allocation(Block, Alignment, false) ); in allocateDataSection()
59 return (uint8_t*)Block.base(); in allocateDataSection()
/minix3/external/bsd/llvm/dist/llvm/test/tools/llvm-profdata/
H A Dmultiple-inputs.test10 FOO3: Block counts: [7, 6]
20 FOO3EMPTY: Block counts: [2, 3]
30 FOO3FOO3BAR3: Block counts: [5, 8]
34 FOO3FOO3BAR3: Block counts: [11, 13]
44 DISJOINT: Block counts: [2, 3]
48 DISJOINT: Block counts: [2, 3]
H A Dcompat.proftext16 # FUNC_COUNT_ONLY-NEXT: Block counts: []
27 # SPACES-NEXT: Block counts: [0]
42 # LARGENUM-NEXT: Block counts: [1152921504606846976, 576460752303423488, 288230376151711744, 144115…
/minix3/external/public-domain/xz/dist/tests/files/
H A DREADME37 good-0cat-empty.xz has two zero-Block Streams concatenated without
40 good-0catpad-empty.xz has two zero-Block Streams concatenated with
43 good-1-check-none.xz has one Stream with one Block with two
46 good-1-check-crc32.xz has one Stream with one Block with two
55 LZMA2 chunk in each Block.
58 Size in the Block Header. This has also four extra bytes of Header
128 bad-0catpad-empty.xz has two zero-Block Streams concatenated with
151 one Block.
163 Uncompressed Size field in Block Header while one-byte would be enough
166 the value stored in the Block Header. That is, the decoder must not
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGCleanup.h151 llvm::BasicBlock *Block; member
182 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) { in setCatchAllHandler() argument
183 setHandler(I, /*catchall*/ nullptr, Block); in setCatchAllHandler()
186 void setHandler(unsigned I, llvm::Constant *Type, llvm::BasicBlock *Block) { in setHandler() argument
189 getHandlers()[I].Block = Block; in setHandler()
203 delete getHandler(I).Block; in clearHandlerBlocks()
344 llvm::BasicBlock *Block) { in addBranchAfter() argument
346 if (ExtInfo.Branches.insert(Block).second) in addBranchAfter()
347 ExtInfo.BranchAfters.push_back(std::make_pair(Block, Index)); in addBranchAfter()
380 bool addBranchThrough(llvm::BasicBlock *Block) { in addBranchThrough() argument
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/YAMLParser/
H A Dspec-08-14.data5 Block scalar
6 - !!map # Block collection
/minix3/external/public-domain/xz/dist/doc/
H A Dxz-file-format.txt27 3. Block
28 3.1. Block Header
29 3.1.1. Block Header Size
30 3.1.2. Block Flags
37 3.3. Block Padding
267 | Stream Header | Block | Block | ... | Block |
464 3. Block
467 | Block Header | Compressed Data | Block Padding | Check |
471 3.1. Block Header
474 | Block Header Size | Block Flags | Compressed Size |
[all …]
/minix3/external/bsd/llvm/dist/llvm/docs/
H A DBlockFrequencyTerminology.rst2 LLVM Block Frequency Terminology
11 Block Frequency is a metric for estimating the relative frequency of different
53 Block Frequency
56 Block frequency is a relative metric that represents the number of times a
60 Block frequency is the main output of the ``BlockFrequencyInfo`` and
71 Block Mass
75 distributed to successors according to branch weights. Block Mass uses a
111 Block Bias
114 Block bias is a proposed *absolute* metric to indicate a bias toward or away
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-readobj/
H A DStreamWriter.cpp31 ArrayRef<uint8_t> Data, bool Block) { in printBinaryImpl() argument
33 Block = true; in printBinaryImpl()
35 if (Block) { in printBinaryImpl()
/minix3/external/bsd/llvm/dist/clang/test/SemaObjC/
H A Darc-type-conversion.m64 typedef void (^Block)(); typedef
70 void ownership_transfer_in_cast(void *vp, Block *pblk) {
82 Block_strong blk_strong2 = (Block)blk_strong1;
83 Block_autoreleasing *blk_auto = (Block*)pblk;
90 …(void)(Block)&lv; // expected-error {{cast of an indirect pointer to an Objective-C pointer to 'Bl…
91 (void)(Block*)lv; // expected-error {{cast of an Objective-C pointer to '__strong Block *'}}
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DBranchFolding.h40 MachineBasicBlock *Block; variable
43 : Hash(h), Block(b) {} in MergePotentialsElt()
46 MachineBasicBlock *getBlock() const { return Block; } in getBlock()
49 Block = MBB; in setBlock()
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp528 const CFGBlock *Block, unsigned Idx) { in enqueueStmtNode() argument
529 assert(Block); in enqueueStmtNode()
536 WList->enqueue(N, Block, Idx); in enqueueStmtNode()
543 WList->enqueue(N, Block, Idx+1); in enqueueStmtNode()
548 WList->enqueue(N, Block, Idx); in enqueueStmtNode()
552 if ((*Block)[Idx].getKind() == CFGElement::NewAllocator) { in enqueueStmtNode()
553 WList->enqueue(N, Block, Idx+1); in enqueueStmtNode()
558 CFGStmt CS = (*Block)[Idx].castAs<CFGStmt>(); in enqueueStmtNode()
564 WList->enqueue(N, Block, Idx+1); in enqueueStmtNode()
573 WList->enqueue(Succ, Block, Idx+1); in enqueueStmtNode()
[all …]

12345678