Home
last modified time | relevance | path

Searched refs:first (Results 1676 - 1700 of 5813) sorted by relevance

1...<<61626364656667686970>>...233

/kernel/linux/linux-5.10/arch/ia64/kernel/
H A Dptrace.c75 # define GET_BITS(first, last, unat) \ in ia64_get_scratch_nat_bits()
77 unsigned long bit = ia64_unat_pos(&pt->r##first); \ in ia64_get_scratch_nat_bits()
78 unsigned long nbits = (last - first + 1); \ in ia64_get_scratch_nat_bits()
79 unsigned long mask = MASK(nbits) << first; \ in ia64_get_scratch_nat_bits()
81 if (bit < first) \ in ia64_get_scratch_nat_bits()
82 dist = 64 + bit - first; \ in ia64_get_scratch_nat_bits()
84 dist = bit - first; \ in ia64_get_scratch_nat_bits()
114 # define PUT_BITS(first, last, nat) \ in ia64_put_scratch_nat_bits()
116 unsigned long bit = ia64_unat_pos(&pt->r##first); \ in ia64_put_scratch_nat_bits()
117 unsigned long nbits = (last - first in ia64_put_scratch_nat_bits()
[all...]
/kernel/linux/linux-6.6/arch/ia64/kernel/
H A Dptrace.c75 # define GET_BITS(first, last, unat) \ in ia64_get_scratch_nat_bits()
77 unsigned long bit = ia64_unat_pos(&pt->r##first); \ in ia64_get_scratch_nat_bits()
78 unsigned long nbits = (last - first + 1); \ in ia64_get_scratch_nat_bits()
79 unsigned long mask = MASK(nbits) << first; \ in ia64_get_scratch_nat_bits()
81 if (bit < first) \ in ia64_get_scratch_nat_bits()
82 dist = 64 + bit - first; \ in ia64_get_scratch_nat_bits()
84 dist = bit - first; \ in ia64_get_scratch_nat_bits()
114 # define PUT_BITS(first, last, nat) \ in ia64_put_scratch_nat_bits()
116 unsigned long bit = ia64_unat_pos(&pt->r##first); \ in ia64_put_scratch_nat_bits()
117 unsigned long nbits = (last - first in ia64_put_scratch_nat_bits()
[all...]
/kernel/linux/linux-5.10/kernel/sched/
H A Dtopology.c576 struct sched_group *tmp, *first; in free_sched_groups() local
581 first = sg; in free_sched_groups()
591 } while (sg != first); in free_sched_groups()
630 * Also keep a unique ID per domain (we use the first CPU number in
740 * Return the canonical balance CPU for this group, this is the first CPU
755 * NUMA topology (first read the regular topology blurb below)
798 * - the first group of each domain is its child domain; this
799 * gets us the first 0-1,3
974 struct sched_group *first = NULL, *last = NULL, *sg; in build_overlap_sched_groups() local
1048 if (!first) in build_overlap_sched_groups()
1184 struct sched_group *first = NULL, *last = NULL; build_sched_groups() local
[all...]
/kernel/linux/linux-6.6/drivers/dma/
H A Dxgene-dma.c842 struct xgene_dma_desc_sw *first = NULL, *new; in xgene_dma_prep_xor() local
862 if (!first) in xgene_dma_prep_xor()
863 first = new; in xgene_dma_prep_xor()
869 list_add_tail(&new->node, &first->tx_list); in xgene_dma_prep_xor()
874 list_splice(&first->tx_list, &new->tx_list); in xgene_dma_prep_xor()
879 if (!first) in xgene_dma_prep_xor()
882 xgene_dma_free_desc_list(chan, &first->tx_list); in xgene_dma_prep_xor()
890 struct xgene_dma_desc_sw *first = NULL, *new; in xgene_dma_prep_pq() local
920 if (!first) in xgene_dma_prep_pq()
921 first in xgene_dma_prep_pq()
[all...]
/kernel/linux/linux-6.6/kernel/sched/
H A Dtopology.c612 struct sched_group *tmp, *first; in free_sched_groups() local
617 first = sg; in free_sched_groups()
627 } while (sg != first); in free_sched_groups()
666 * Also keep a unique ID per domain (we use the first CPU number in
788 * Return the canonical balance CPU for this group, this is the first CPU
803 * NUMA topology (first read the regular topology blurb below)
846 * - the first group of each domain is its child domain; this
847 * gets us the first 0-1,3
1024 struct sched_group *first = NULL, *last = NULL, *sg; in build_overlap_sched_groups() local
1098 if (!first) in build_overlap_sched_groups()
1235 struct sched_group *first = NULL, *last = NULL; build_sched_groups() local
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A Diomapper.cpp215 TString err = "mapped binding out of range: " + entKey.first; in operator ()()
225 auto entKey2 = uniformVarMap[idx]->find(entKey.first); in operator ()()
234 TString err = "mapped set out of range: " + entKey.first; in operator ()()
243 auto entKey2 = uniformVarMap[idx]->find(entKey.first); in operator ()()
251 TString errorMsg = "Invalid binding: " + entKey.first; in operator ()()
430 const TString& name = entKey.first; in operator ()()
500 TString err = "Interpolation qualifier mismatch : " + entKey.first; in operator ()()
527 TString err = "Invalid In/Out variable type : " + entKey.first; in operator ()()
561 TString err = "Invalid In/Out variable type : " + entKey.first; in operator ()()
577 TString err = "Invalid Uniform variable type : " + entKey.first; in operator ()()
[all...]
/third_party/node/deps/v8/src/objects/
H A Dstring.cc40 // TurboFan can create cons strings with empty first parts. in SlowFlatten()
41 while (cons->first().length() == 0) { in SlowFlatten()
656 // basically the same logic as the way we access the heap in the first place. in LooksValid()
691 // Flatten {subject} string first.
761 string = cons.first(cage_base); in SlowGetFlatContent()
884 String first = cons_string.first(cage_base); in WriteToFlat() local
885 int boundary = first.length(); in WriteToFlat()
891 WriteToFlat(first, sink, start, first_length, cage_base, in WriteToFlat()
893 if (start == 0 && cons_string.second(cage_base) == first) { in WriteToFlat()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DYAMLParser.cpp56 /// getUnicodeEncoding - Reads up to the first 4 bytes to determine the Unicode
278 // Don't print out more errors after the first one we encounter. The rest in setError()
279 // are just the result of the first, and have no meaning. in setError()
439 /// Must be the first token generated.
729 if (UnicodeScalarValue.first == 0x85) in escape()
731 else if (UnicodeScalarValue.first == 0xA0) in escape()
733 else if (UnicodeScalarValue.first == 0x2028) in escape()
735 else if (UnicodeScalarValue.first == 0x2029) in escape()
738 sys::unicode::isPrintable(UnicodeScalarValue.first)) in escape()
741 std::string HexStr = utohexstr(UnicodeScalarValue.first); in escape()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.cpp135 // first loads get extra latency. The doc says global memory access can be
233 // - instructions that depend on the first low latency instructions. in tryCandidateTopDown()
307 // Returns if the register was set between first and last.
550 return PredID == S.first->getID(); in addPred()
561 if (SuccID == S.first->getID()) { in addSucc()
594 S.first->printDebug(false); in printDebug()
904 SUColors.first = CurrentTopDownReservedDependencyColoring[SU->NodeNum]; in colorAccordingToReservedDependencies()
1432 Height = std::max(Height, Succ.first->Height + Succ.first->getCost()); in fillStats()
1708 if (--BlockNumPredsLeft[Block.first in releaseBlockSuccs()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp381 Pair.first->second.Merge(Pair.second ? TopDownPtrState() : MI->second, in MergePred()
388 if (Other.PerPtrTopDown.find(MI->first) == Other.PerPtrTopDown.end()) in MergePred()
424 Pair.first->second.Merge(Pair.second ? BottomUpPtrState() : MI->second, in MergeSucc()
432 if (Other.PerPtrBottomUp.find(MI->first) == Other.PerPtrBottomUp.end()) in MergeSucc()
445 OS << " Ptr: " << *I->first in operator <<()
465 OS << " Ptr: " << *I->first in operator <<()
1065 Inst = Pair.first; in OptimizeIndividualCallImpl()
1248 const Value *Arg = I->first; in CheckForCFGHazards()
1345 // it's better to let it remain as the first instruction after a call. in VisitInstructionBottomUp()
1372 const Value *Ptr = MI->first; in VisitInstructionBottomUp()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DIntervalMap.h17 // Like SmallVector, IntervalMap will store the first N intervals in the map
224 T1 first[N]; member in llvm::IntervalMapImpl::NodeBase
238 first[j] = Other.first[i]; in copy()
260 first[j + Count] = first[i + Count]; in moveRight()
518 /// This depends on branch nodes storing the NodeRef array as their first
565 const KeyT &start(unsigned i) const { return this->first[i].first; } in start()
566 const KeyT &stop(unsigned i) const { return this->first[ in start()
[all...]
/third_party/vixl/src/aarch32/
H A Dinstructions-aarch32.h545 int first,
547 return (registers.GetList() >> first) & ((1 << count) - 1);
656 SRegisterList(SRegister first, int length)
657 : first_(first.GetCode()), length_(length) {
678 DRegisterList(DRegister first, int length)
679 : first_(first.GetCode()), length_(length) {
722 NeonRegisterList(DRegister first,
726 : first_(first.GetCode()), spacing_(spacing), type_(type), lane_(-1) {
728 VIXL_ASSERT(first.GetCode() <= last.GetCode());
730 int range = last.GetCode() - first
[all...]
/kernel/linux/linux-5.10/drivers/scsi/
H A Dinitio.c454 /* Calculate checksum first */ in initio_se2_update_all()
740 struct scsi_ctrl_blk *first; in initio_find_first_pend_scb() local
743 first = host->first_pending; in initio_find_first_pend_scb()
744 while (first != NULL) { in initio_find_first_pend_scb()
745 if (first->opcode != ExecSCSI) in initio_find_first_pend_scb()
746 return first; in initio_find_first_pend_scb()
747 if (first->tagmsg == 0) { in initio_find_first_pend_scb()
748 if ((host->act_tags[first->target] == 0) && in initio_find_first_pend_scb()
749 !(host->targets[first->target].flags & TCF_BUSY)) in initio_find_first_pend_scb()
750 return first; in initio_find_first_pend_scb()
[all...]
/kernel/linux/linux-6.6/drivers/scsi/
H A Dinitio.c454 /* Calculate checksum first */ in initio_se2_update_all()
739 struct scsi_ctrl_blk *first; in initio_find_first_pend_scb() local
742 first = host->first_pending; in initio_find_first_pend_scb()
743 while (first != NULL) { in initio_find_first_pend_scb()
744 if (first->opcode != ExecSCSI) in initio_find_first_pend_scb()
745 return first; in initio_find_first_pend_scb()
746 if (first->tagmsg == 0) { in initio_find_first_pend_scb()
747 if ((host->act_tags[first->target] == 0) && in initio_find_first_pend_scb()
748 !(host->targets[first->target].flags & TCF_BUSY)) in initio_find_first_pend_scb()
749 return first; in initio_find_first_pend_scb()
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dextension_set.cc89 return std::hash<const MessageLite*>{}(p.first) ^ in operator ()()
896 if (it_xs->first < it_ys->first) { in SizeOfUnion()
898 } else if (it_xs->first == it_ys->first) { in SizeOfUnion()
1116 *Insert(number).first = *other_ext; in SwapExtension()
1126 *other->Insert(number).first = *this_ext; in SwapExtension()
1472 it != end && it->first < end_field_number; ++it) { in _InternalSerialize()
1474 it->first, target, stream); in _InternalSerialize()
1481 it != end && it->first < end_field_numbe in _InternalSerialize()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Draw_hash_set_test.cc327 const absl::string_view& key = std::get<0>(p.first); in apply_impl()
328 return std::forward<F>(f)(key, std::piecewise_construct, std::move(p.first), in apply_impl()
503 EXPECT_THAT(*res.first, 0); in TEST()
513 EXPECT_THAT(*res.first, 0); in TEST()
518 EXPECT_THAT(*res.first, 1); in TEST()
529 EXPECT_THAT(*res.first, 1); in TEST()
534 EXPECT_THAT(*res.first, 2); in TEST()
552 EXPECT_THAT(*res.first, i); in TEST()
564 EXPECT_THAT(*res.first, j); in TEST()
793 { // raw_hash_set(first, las in TestDecompose()
[all...]
/kernel/linux/linux-5.10/arch/x86/entry/vdso/
H A DMakefile194 first=`echo $$buildid | cut -b-2`; \
196 mkdir -p "$(MODLIB)/vdso/.build-id/$$first"; \
197 ln -sf "../../$(@:install_%=%)" "$(MODLIB)/vdso/.build-id/$$first/$$last.debug"; \
/kernel/linux/linux-5.10/arch/arm/mm/
H A Dpmsa-v7.c238 bool first = true; in pmsav7_adjust_lowmem_bounds() local
267 if (first) { in pmsav7_adjust_lowmem_bounds()
279 first = false; in pmsav7_adjust_lowmem_bounds()
H A Dpmsa-v8.c98 bool first = true; in pmsav8_adjust_lowmem_bounds() local
102 if (first) { in pmsav8_adjust_lowmem_bounds()
111 first = false; in pmsav8_adjust_lowmem_bounds()
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
H A Dsgetem.S120 bfffo %d0{#0:#32},%d3 |find first 1 in ls mant to d0
121 lsll %d3,%d0 |shift first 1 to integer bit in ms mant
127 bfffo %d0{#0:#32},%d3 |find first 1 in ls mant to d0
/kernel/linux/linux-6.6/arch/m68k/fpsp040/
H A Dsgetem.S120 bfffo %d0{#0:#32},%d3 |find first 1 in ls mant to d0
121 lsll %d3,%d0 |shift first 1 to integer bit in ms mant
127 bfffo %d0{#0:#32},%d3 |find first 1 in ls mant to d0
/kernel/linux/linux-6.6/arch/arm/mm/
H A Dpmsa-v7.c238 bool first = true; in pmsav7_adjust_lowmem_bounds() local
267 if (first) { in pmsav7_adjust_lowmem_bounds()
279 first = false; in pmsav7_adjust_lowmem_bounds()
H A Dpmsa-v8.c98 bool first = true; in pmsav8_adjust_lowmem_bounds() local
102 if (first) { in pmsav8_adjust_lowmem_bounds()
111 first = false; in pmsav8_adjust_lowmem_bounds()
/kernel/linux/linux-5.10/drivers/media/pci/cobalt/
H A Dcobalt-omnitek.c159 bool first = true; in descriptor_list_create() local
196 if (first) { in descriptor_list_create()
199 first = false; in descriptor_list_create()
255 /* Loopback to the first descriptor */ in descriptor_list_create()
/kernel/linux/linux-5.10/drivers/staging/wfx/
H A Dqueue.c183 bool first = true; in wfx_pending_dump_old_frames() local
191 if (first) { in wfx_pending_dump_old_frames()
194 first = false; in wfx_pending_dump_old_frames()

Completed in 256 milliseconds

1...<<61626364656667686970>>...233