| /openbsd-src/gnu/llvm/llvm/tools/llvm-diff/lib/ |
| H A D | DifferenceEngine.h | 38 Engine.consumer.enterContext(L, R); in Context() 42 Engine.consumer.exitContext(); in ~Context() 60 DifferenceEngine(Consumer &consumer) in DifferenceEngine() argument 61 : consumer(consumer), globalValueOracle(nullptr) {} in DifferenceEngine() 66 consumer.log(text); in log() 69 return LogBuilder(consumer, text); in logf() 71 Consumer& getConsumer() const { return consumer; } in getConsumer() 85 Consumer &consumer;
|
| H A D | DiffLog.h | 29 Consumer *consumer; variable 40 LogBuilder(Consumer &c, StringRef Format) : consumer(&c), Format(Format) {} in LogBuilder() 42 : consumer(L.consumer), Format(L.Format), in LogBuilder() 44 L.consumer = nullptr; in LogBuilder() 64 Consumer &consumer; variable 67 DiffLogBuilder(Consumer &c) : consumer(c) {} in DiffLogBuilder()
|
| H A D | DiffLog.cpp | 20 if (consumer) in ~LogBuilder() 21 consumer->logf(*this); in ~LogBuilder() 29 DiffLogBuilder::~DiffLogBuilder() { consumer.logd(*this); } in ~DiffLogBuilder()
|
| /openbsd-src/regress/lib/libpthread/semaphore/sem_destroy/ |
| H A D | sem_destroy.c | 17 void *consumer(void *arg); 34 CHECKr(pthread_create(&cons_th, NULL, consumer, &counter)); in main() 63 consumer(void *arg) in consumer() function
|
| /openbsd-src/sys/dev/ic/ |
| H A D | aic6915.c | 649 int consumer, producer, txidx; in sf_txintr() local 654 consumer = CQCI_TxCompletionConsumerIndex_get(cqci); in sf_txintr() 658 if (consumer == producer) in sf_txintr() 663 while (consumer != producer) { in sf_txintr() 664 SF_CDTXCSYNC(sc, consumer, BUS_DMASYNC_POSTREAD); in sf_txintr() 665 tcd = letoh32(sc->sc_txcomp[consumer].tcd_word0); in sf_txintr() 686 consumer = SF_NEXTTCD(consumer); in sf_txintr() 700 CQCI_TxCompletionConsumerIndex(consumer)); in sf_txintr() 720 int consumer, producer, bufproducer, rxidx, len; in sf_rxintr() local 724 consumer = CQCI_RxCompletionQ1ConsumerIndex_get(cqci); in sf_rxintr() [all …]
|
| H A D | mfi.c | 965 uint32_t producer, consumer, ctx; in mfi_intr() local 976 consumer = letoh32(pcq->mpc_consumer); in mfi_intr() 980 while (consumer != producer) { in mfi_intr() 982 DEVNAME(sc), producer, consumer); in mfi_intr() 984 ctx = pcq->mpc_reply_q[consumer]; in mfi_intr() 985 pcq->mpc_reply_q[consumer] = MFI_INVALID_CTX; in mfi_intr() 988 DEVNAME(sc), producer, consumer); in mfi_intr() 998 consumer++; in mfi_intr() 999 if (consumer == (sc->sc_max_cmds + 1)) in mfi_intr() 1000 consumer = 0; in mfi_intr() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | ChainedIncludesSource.cpp | 140 auto consumer = std::make_unique<PCHGenerator>( in createChainedIncludesSource() local 144 consumer->GetASTMutationListener()); in createChainedIncludesSource() 145 Clang->setASTConsumer(std::move(consumer)); in createChainedIncludesSource()
|
| /openbsd-src/sys/dev/pci/drm/include/linux/ |
| H A D | pwm.h | 15 pwm_get(struct device *dev, const char *consumer) in pwm_get() argument
|
| /openbsd-src/gnu/llvm/llvm/docs/PDB/ |
| H A D | HashTable.rst | 15 a consumer to read a list of values and reconstruct the hash table on the fly. 19 value type is a uint32. The only requirement is that the producer and consumer
|
| H A D | MsfFile.rst | 176 necessarily contiguously laid out in the file, this means that both the consumer
|
| H A D | TpiStream.rst | 299 a PDB file consumer can always have the most up to date version of the type
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | haifa-sched.c | 3360 rtx consumer; in process_insn_depend_be_in_spec() local 3362 consumer = XEXP (link, 0); in process_insn_depend_be_in_spec() 3391 add_back_forw_dep (consumer, twin, REG_NOTE_KIND (link), ds); in process_insn_depend_be_in_spec() 3986 rtx consumer; in fix_recovery_deps() local 3988 consumer = XEXP (link, 0); in fix_recovery_deps() 3990 if (BLOCK_FOR_INSN (consumer) != rec) in fix_recovery_deps() 3992 delete_back_forw_dep (consumer, insn); in fix_recovery_deps() 3994 if (!bitmap_bit_p (&in_ready, INSN_LUID (consumer))) in fix_recovery_deps() 3996 ready_list = alloc_INSN_LIST (consumer, ready_list); in fix_recovery_deps() 3997 bitmap_set_bit (&in_ready, INSN_LUID (consumer)); in fix_recovery_deps()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonInstrFormats.td | 97 let TSFlags{14} = isNewValue; // New-value consumer insn. 310 let TSFlags{10} = isNewValue; // New-value consumer insn.
|
| /openbsd-src/gnu/llvm/llvm/docs/GlobalISel/ |
| H A D | Legalizer.rst | 280 outputs from the consumer type set. 282 smaller outputs from the consumer type set. 343 * G_PHI must be legal for all types in the producer and consumer typesets. This
|
| /openbsd-src/gnu/llvm/lldb/docs/use/ |
| H A D | extensions.rst | 36 When a consumer sees a forward declaration that is nested inside a
|
| /openbsd-src/gnu/gcc/gcc/config/mips/ |
| H A D | 24k.md | 63 ;; 3a. jr/jalr consumer 69 ;; 3b. branch consumer
|
| /openbsd-src/gnu/llvm/clang/lib/ARCMigrate/ |
| H A D | ObjCMT.cpp | 319 ObjCMigrator(ObjCMigrateASTConsumer &consumer, ParentMap &PMap) in ObjCMigrator() argument 320 : Consumer(consumer), PMap(PMap) { } in ObjCMigrator() 364 BodyMigrator(ObjCMigrateASTConsumer &consumer) : Consumer(consumer) { } in BodyMigrator() argument
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUCallingConv.td | 78 // 32*4 + 4 is the minimum for a fetch shader consumer with 32 inputs.
|
| /openbsd-src/usr.sbin/nsd/ |
| H A D | nsd.conf.sample.in | 491 # Turn this zone into a catalog consumer zone. 494 # catalog: consumer
|
| /openbsd-src/sys/dev/pci/ |
| H A D | if_nxe.c | 1090 /* allocate the context memory and the consumer field */ in nxe_up() 1881 nxe_ring_writeable(struct nxe_ring *nr, int consumer) in nxe_ring_writeable() argument 1883 nr->nr_ready = consumer - nr->nr_slot; in nxe_ring_writeable()
|
| /openbsd-src/gnu/llvm/llvm/docs/AMDGPUDwarfExtensionAllowLocationDescriptionOnTheDwarfExpressionStack/ |
| H A D | AMDGPUDwarfExtensionAllowLocationDescriptionOnTheDwarfExpressionStack.md | 974 consumer of DWARF when it evaluates the location expression. 1323 register. If a consumer, such as a debugger, allows the user to change the value 1360 descriptions, the consumer can ensure any updates are done to all of them, and 1731 <i>A consumer of a location description with more than one single location 1982 > file to another must be performed by the consumer. But given that DR is 1984 > DR was defined as an implementation defined value, then the consumer could 1994 > consumer would need to determine what executable or shared object the 2190 link-time relocation but should not be interpreted by the consumer as a 2679 `DW_OP_form_tls_address` allows the consumer to perform the computation 2856 pointer would point. Thus, a consumer of the debug information would be able [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | AMDGPUDwarfExtensionsForHeterogeneousDebugging.rst | 365 be larger than the generic type. It also allows a consumer great implementation 377 actual hardware. That would require the consumer to have special treatment for 415 consumer on how to implement them. They allow the address space to encode lane 542 unit. This allows a consumer to know what extensions are present in the debugger 547 This allows a consumer to parse the string when it contains information from 1181 *A consumer of a location description with more than one single location 1462 file to another must be performed by the consumer. But given that DR is 1464 If DR was defined as an implementation defined value, then the consumer 1474 the consumer would need to determine what executable or shared object the 1686 link-time relocation but should not be interpreted by the consumer as a [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/ia64/ |
| H A D | ia64.c | 8292 ia64_st_address_bypass_p (rtx producer, rtx consumer) in ia64_st_address_bypass_p() argument 8296 gcc_assert (producer && consumer); in ia64_st_address_bypass_p() 8305 dest = ia64_single_set (consumer); in ia64_st_address_bypass_p() 8316 ia64_ld_address_bypass_p (rtx producer, rtx consumer) in ia64_ld_address_bypass_p() argument 8320 gcc_assert (producer && consumer); in ia64_ld_address_bypass_p() 8329 src = ia64_single_set (consumer); in ia64_ld_address_bypass_p()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | Sema.cpp | 188 Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer, in Sema() argument 191 LangOpts(pp.getLangOpts()), PP(pp), Context(ctxt), Consumer(consumer), in Sema()
|
| /openbsd-src/gnu/gcc/gcc/config/arm/ |
| H A D | arm.c | 14929 arm_no_early_store_addr_dep (rtx producer, rtx consumer) in arm_no_early_store_addr_dep() argument 14932 rtx addr = PATTERN (consumer); in arm_no_early_store_addr_dep() 14953 arm_no_early_alu_shift_dep (rtx producer, rtx consumer) in arm_no_early_alu_shift_dep() argument 14956 rtx op = PATTERN (consumer); in arm_no_early_alu_shift_dep() 14985 arm_no_early_alu_shift_value_dep (rtx producer, rtx consumer) in arm_no_early_alu_shift_value_dep() argument 14988 rtx op = PATTERN (consumer); in arm_no_early_alu_shift_value_dep() 15018 arm_no_early_mul_dep (rtx producer, rtx consumer) in arm_no_early_mul_dep() argument 15021 rtx op = PATTERN (consumer); in arm_no_early_mul_dep()
|