HomeSort by: relevance | last modified time | path
    Searched defs:promote (Results 1 - 22 of 22) sorted by relevancy

  /src/usr.bin/tic/
tic.c 347 promote(TIC *rtic, TIC *utic) function
467 * this term, promote it and append it to our list. */
469 if (promote(rtic, utic) == -1)
470 err(EXIT_FAILURE, "promote");
tic.c 347 promote(TIC *rtic, TIC *utic) function
467 * this term, promote it and append it to our list. */
469 if (promote(rtic, utic) == -1)
470 err(EXIT_FAILURE, "promote");
  /src/usr.bin/xlint/lint2/
chk.c 20 * 4. The name of the author may not be used to endorse or promote products
452 bool promote, asgn, dowarn; local
466 promote = def != NULL && def->s_old_style_function;
475 if (types_compatible(arg1, arg2, true, promote, asgn, &dowarn) &&
500 if (promote) {
1193 * promote if set, promote left type before comparison; used for
chk.c 20 * 4. The name of the author may not be used to endorse or promote products
452 bool promote, asgn, dowarn; local
466 promote = def != NULL && def->s_old_style_function;
475 if (types_compatible(arg1, arg2, true, promote, asgn, &dowarn) &&
500 if (promote) {
1193 * promote if set, promote left type before comparison; used for
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 318 promote(NId, NMd);
347 promote(N1Id, N1Md);
348 promote(N2Id, N2Md);
352 void promote(NodeId NId, NodeMetadata& NMd) { function in class:llvm::PBQP::RegAlloc::RegAllocSolverImpl
RegAllocPBQP.h 318 promote(NId, NMd);
347 promote(N1Id, N1Md);
348 promote(N2Id, N2Md);
352 void promote(NodeId NId, NodeMetadata& NMd) { function in class:llvm::PBQP::RegAlloc::RegAllocSolverImpl
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
ThinLTOCodeGenerator.cpp 662 void ThinLTOCodeGenerator::promote(Module &TheModule, ModuleSummaryIndex &Index, function in class:ThinLTOCodeGenerator
698 // Promote the exported values in the index, so that they are promoted
817 * Perform internalization. Runs promote and internalization together.
860 // Promote the exported values in the index, so that they are promoted
ThinLTOCodeGenerator.cpp 662 void ThinLTOCodeGenerator::promote(Module &TheModule, ModuleSummaryIndex &Index, function in class:ThinLTOCodeGenerator
698 // Promote the exported values in the index, so that they are promoted
817 * Perform internalization. Runs promote and internalization together.
860 // Promote the exported values in the index, so that they are promoted
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 115 clEnumValN(THINPROMOTE, "promote",
575 return promote();
688 void promote() { function in class:thinlto::ThinLTOProcessing
702 ThinGenerator.promote(*TheModule, *Index, *Input);
llvm-lto.cpp 115 clEnumValN(THINPROMOTE, "promote",
575 return promote();
688 void promote() { function in class:thinlto::ThinLTOProcessing
702 ThinGenerator.promote(*TheModule, *Index, *Input);
  /src/sys/uvm/
uvm_fault.c 538 * uvmfault_promote: promote data to a new anon. used for 1B and 2B.
771 bool promote; member in struct:uvm_faultctx
1060 flt->promote = false;
1428 * 4. dispatch direct or promote handlers.
1528 flt->promote = true;
1602 * uvm_fault_upper_promote: promote upper page.
1710 " MAPPING: anon: pm=%#jx, va=%#jx, pg=%#jx, promote=%jd",
1711 (uintptr_t)pmap, va, (uintptr_t)pg, flt->promote);
1864 * 2. for center page, check if promote.
1868 * 4. dispatch either direct / promote fault
    [all...]
uvm_fault.c 538 * uvmfault_promote: promote data to a new anon. used for 1B and 2B.
771 bool promote; member in struct:uvm_faultctx
1060 flt->promote = false;
1428 * 4. dispatch direct or promote handlers.
1528 flt->promote = true;
1602 * uvm_fault_upper_promote: promote upper page.
1710 " MAPPING: anon: pm=%#jx, va=%#jx, pg=%#jx, promote=%jd",
1711 (uintptr_t)pmap, va, (uintptr_t)pg, flt->promote);
1864 * 2. for center page, check if promote.
1868 * 4. dispatch either direct / promote fault
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_lrc.c 2325 bool promote; local
2352 promote = gen12_csb_parse(execlists, buf + 2 * head);
2354 promote = gen8_csb_parse(execlists, buf + 2 * head);
2355 if (promote) {
2370 GEM_BUG_ON(!assert_pending_valid(execlists, "promote"));
intel_lrc.c 2325 bool promote; local
2352 promote = gen12_csb_parse(execlists, buf + 2 * head);
2354 promote = gen8_csb_parse(execlists, buf + 2 * head);
2355 if (promote) {
2370 GEM_BUG_ON(!assert_pending_valid(execlists, "promote"));
  /src/usr.bin/xlint/lint1/
tree.c 19 * 4. The name of the author may not be used to endorse or promote products
2210 ln = promote(op, false, ln);
2213 rn = promote(op, false, rn);
3673 /* In traditional C, keep unsigned and promote FLOAT to DOUBLE. */
3732 promote(op_t op, bool farg, tnode_t *tn) function
3849 tnode_t *ptn = promote(NOOP, true, tn);
4781 : promote(NOOP, true, arg);
4865 tn = promote(NOOP, false, tn);
tree.c 19 * 4. The name of the author may not be used to endorse or promote products
2210 ln = promote(op, false, ln);
2213 rn = promote(op, false, rn);
3673 /* In traditional C, keep unsigned and promote FLOAT to DOUBLE. */
3732 promote(op_t op, bool farg, tnode_t *tn) function
3849 tnode_t *ptn = promote(NOOP, true, tn);
4781 : promote(NOOP, true, arg);
4865 tn = promote(NOOP, false, tn);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 4074 /// Utility function to promote the operand of \p Ext when this
4078 /// created to promote the operand of Ext.
4089 /// Utility function to promote the operand of \p Ext when this
4093 /// created to promote the operand of Ext.
4136 /// action to promote the operand of \p Ext instead of using Ext.
4141 /// because we do not want to promote these instructions as CodeGenPrepare
4267 // Do not promote if the operand has been added by codegenprepare.
5684 /// Try to speculatively promote extensions in \p Exts and continue
5697 // Iterate over all the extensions to try to promote them.
5715 // Check if we can promote
7276 bool promote() { function in class:__anon4161::VectorPromoteHelper
    [all...]
CodeGenPrepare.cpp 4074 /// Utility function to promote the operand of \p Ext when this
4078 /// created to promote the operand of Ext.
4089 /// Utility function to promote the operand of \p Ext when this
4093 /// created to promote the operand of Ext.
4136 /// action to promote the operand of \p Ext instead of using Ext.
4141 /// because we do not want to promote these instructions as CodeGenPrepare
4267 // Do not promote if the operand has been added by codegenprepare.
5684 /// Try to speculatively promote extensions in \p Exts and continue
5697 // Iterate over all the extensions to try to promote them.
5715 // Check if we can promote
7276 bool promote() { function in class:__anon4161::VectorPromoteHelper
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
call.cc 9282 tree promote; local
9288 promote = type_promotes_to (type);
9289 if (same_type_p (type, promote))
9290 promote = type;
9292 return promote;
call.cc 9282 tree promote; local
9288 promote = type_promotes_to (type);
9289 if (same_type_p (type, promote))
9290 promote = type;
9292 return promote;
  /src/external/gpl3/gcc.old/dist/gcc/cp/
call.cc 8646 tree promote; local
8652 promote = type_promotes_to (type);
8653 if (same_type_p (type, promote))
8654 promote = type;
8656 return promote;
call.cc 8646 tree promote; local
8652 promote = type_promotes_to (type);
8653 if (same_type_p (type, promote))
8654 promote = type;
8656 return promote;

Completed in 174 milliseconds