Home
last modified time | relevance | path

Searched refs:branches (Results 1 – 25 of 871) sorted by relevance

12345678910>>...35

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dmatch.cpp13 for (const std::pair<T, std::shared_ptr<Expression>>& branch : branches) { in eachChild()
25 Expression::childrenEqual(branches, rhs->branches)); in operator ==()
33 for (const auto& branch : branches) { in possibleOutputs()
51 std::map<T, std::shared_ptr<Expression>> sortedBranches(branches.begin(), branches.end()); in serialize()
91 auto it = branches.find(inputValue->get<std::string>()); in evaluate()
92 if (it != branches.end()) { in evaluate()
112 auto it = branches.find(rounded); in evaluate()
113 if (it != branches.end()) { in evaluate()
195 std::unique_ptr<Expression>>> branches, in create() argument
202 typedBranches.reserve(branches.size()); in create()
[all …]
H A Dcase.cpp9 for (const auto& branch : branches) { in evaluate()
23 for (const Branch& branch : branches) { in eachChild()
33 … return *otherwise == *(rhs->otherwise) && Expression::childrenEqual(branches, rhs->branches); in operator ==()
40 for (const auto& branch : branches) { in possibleOutputs()
71 std::vector<Case::Branch> branches; in parse() local
72 branches.reserve((length - 2) / 2); in parse()
88 branches.push_back(std::make_pair(std::move(*test), std::move(*output))); in parse()
99 std::move(branches), in parse()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/layerindexlib/
H A Drestapi.py78 branches = params['branch'].split(',')
79 index.config['BRANCH'] = branches
81 branches = ['*']
84 def load_cache(path, index, branches=[]): argument
91 for branch in branches:
105 logger.debug('No matching branches (%s) in index file(s)' % branches)
120 load_cache(up.path, index, branches)
129 load_cache(fpath, index, branches)
191 branches = params['branch'].split(',')
192 index.config['BRANCH'] = branches
[all …]
H A Dcooker.py71 def _load_bblayers(self, branches=None): argument
76 if not branches:
82 index.branches = {}
102 for branch in branches:
104 index.branches[branchId] = layerindexlib.Branch(index, None)
105 index.branches[branchId].define_data(branchId, branch, bb_branch)
141 for branchId in index.branches:
172 branches = params['branch'].split(',')
174 branches = ['HEAD']
176 logger.debug("Loading cooker data branches %s" % branches)
[all …]
H A D__init__.py309 branches = [branch]
311 branches = None
315 layerBranch = index.find_collection(collection, version, branches)
329 branches = [branch]
331 branches = None
334 layerBranch = index.find_layerbranch(name, branches)
469 for branchid in lix.branches:
471 '{:26}'.format(lix.branches[branchid].name),
472 '{:34}'.format(lix.branches[branchid].short_description),
473 '{:22}'.format(lix.branches[branchid].bitbake_branch)
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bblayers/
H A Dlayerindex.py62 def _construct_url(baseurls, branches): argument
71 if branches:
72 baseurl += ";branch=%s" % ','.join(branches)
81 branches = [args.branch]
83branches = (self.tinfoil.config_data.getVar('LAYERSERIES_CORENAMES') or 'master').split()
84 logger.debug('Trying branches: %s' % branches)
111 for remoteurl in _construct_url(apiurl, branches):
116 logger.error("Remote layer index %s is empty for branches %s" % (apiurl, branches))
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/rtree/visitors/
H A Ddistance_query.hpp330 branches = o.branches; in operator =()
335 active_branch_list_type branches; member
389 active_branch_list_type & branches = internal_stack.back().branches; in increment() local
392 if ( branches.size() <= current_branch ) in increment()
411 is_node_prunable(neighbors.back().first, branches[current_branch].first) ) in increment()
421 rtree::apply_visitor(*this, *(branches[current_branch - 1].second)); in increment()
478 … internal_stack.back().branches.push_back( std::make_pair(node_distance, it->second) ); in operator ()()
482 if ( internal_stack.back().branches.empty() ) in operator ()()
486 … std::sort(internal_stack.back().branches.begin(), internal_stack.back().branches.end(), abl_less); in operator ()()
548 if ( first->branches.size() <= first->current_branch ) in calc_closest_node_distance()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dfunction.cpp349 …(type::Type type, const std::string& property, std::map<T, std::unique_ptr<Expression>> branches) { in categorical() argument
351 for (auto& b : branches) { in categorical()
358 …pe::Type type, const std::string& property, std::map<bool, std::unique_ptr<Expression>> branches) { in categorical() argument
359 auto it = branches.find(true); in categorical()
360 std::unique_ptr<Expression> trueCase = it == branches.end() ? in categorical()
364 it = branches.find(false); in categorical()
365 std::unique_ptr<Expression> falseCase = it == branches.end() ? in categorical()
436 auto branches = convertBranches<bool>(type, value, err); in convertCategoricalFunction() local
437 if (!branches) { in convertCategoricalFunction()
440 return categorical(type, property, std::move(*branches)); in convertCategoricalFunction()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/layerindexlib/tests/
H A Dlayerindexobj.py25 self.index.branches = {}
34 self.index.branches[branchId] = Branch(self.index)
35 self.index.branches[branchId].define_data(branchId,
37 self.index.branches[branchId].lockData()
91 branch = self.index.branches[1]
131 self.assertEqual(layerBranch.branch, self.index.branches[1])
143 self.assertEqual(layerBranch.branch, self.index.branches[1])
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Dgit.py174 branches = ud.parm.get("branch", "").split(',')
175 if branches == [""] and not ud.nobranch:
177 branches = ["master"]
178 if len(branches) != len(ud.names):
207 ud.branches = {}
209 branch = branches[pos]
210 ud.branches[name] = branch
295 shallow_refs.extend(ud.branches.values())
402 …ble to find revision %s in branch %s even from upstream" % (ud.revisions[name], ud.branches[name]))
497 branch = ud.branches[name]
[all …]
/OK3568_Linux_fs/kernel/tools/perf/Documentation/
H A Ditrace.txt2 b synthesize branches events (branch misses for Arm SPE)
3 c synthesize branches events (calls only)
4 r synthesize branches events (returns only)
45 It is also possible to skip events generated (instructions, branches, transactions,
/OK3568_Linux_fs/u-boot/fs/ubifs/
H A Dmisc.h208 return (struct ubifs_branch *)((void *)idx->branches + in ubifs_idx_branch()
221 return (void *)((struct ubifs_branch *)idx->branches)->key; in ubifs_idx_key()
225 tmp = (struct ubifs_branch *)idx->branches; in ubifs_idx_key()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dcase.hpp19 …: Expression(Kind::Case, type_), branches(std::move(branches_)), otherwise(std::move(otherwise_)) { in Case()
33 std::vector<Branch> branches; member in mbgl::style::expression::Case
H A Dmatch.hpp24 branches(std::move(branches_)), in Match()
40 Branches branches; member in mbgl::style::expression::Match
/OK3568_Linux_fs/yocto/poky/documentation/overview-manual/
H A Ddevelopment-environment.rst164 - Be sure to always work in matching branches for both the selected
230 The Yocto Project files are maintained using Git in "branches" whose Git
231 histories track every change and whose structures provide branches for
252 branches in this repository using the web interface of the
254 area. These branches hold changes (commits) to the project that have
258 branches into the "master" branch of the Git repository.
261 maintain cloned repositories of upstream branches. The cloned
310 local branches in your working Git repository on the development
311 host. You can name these branches anything you like. It is helpful to
325 - *Manage Branches:* Because branches are easy to use, you should use a
[all …]
/OK3568_Linux_fs/kernel/Documentation/staging/
H A Dstatic-keys.rst76 Using the 'asm goto', we can create branches that are either taken or not taken
157 Note that switching branches results in some locks being taken,
306 208,368,926 branches # 243.507 M/sec ( +- 0.06% )
307 5,569,188 branch-misses # 2.67% of all branches ( +- 0.54% )
323 206,859,359 branches # 245.956 M/sec ( +- 0.04% )
324 4,884,119 branch-misses # 2.36% of all branches ( +- 0.85% )
328 The percentage of saved branches is .7%, and we've saved 12% on
330 this optimization is about reducing the number of branches. In addition, we've
/OK3568_Linux_fs/yocto/poky/documentation/kernel-dev/
H A Dmaint-appx.rst17 list all necessary patches, configurations, branches, tags, and feature
30 kernel that branches off ``linux.org`` version 4.12 and the
43 on your local machine, you can discover the branches that are available
63 Once you have checked out and switched to appropriate branches, you can
69 As mentioned, branches in the ``yocto-kernel-cache`` repository
131 all the branches, tags, patches and configurations that need to be
140 branches checked out and any required branching, patching and tagging
159 become an integrated part of the branches.
H A Dconcepts-appx.rst172 creates kernel branches at points where functionality is no longer
196 cases, the team uses isolated branches to merge features.
200 kernel types. So, for these types, the team creates branches off the end
209 branches, it is important to realize that from the developer's point of
216 any other branches at all. Of course, it can make sense to have these
217 branches in the tree, should a person decide to explore them. For
234 features do not have to be duplicated along individual branches of the
240 three BSP-specific branches and a real-time kernel branch. Each branch
246 branches for individual BSP-specific real-time kernels. The illustration
247 shows three branches as an example. Each branch points the way to
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/lcov/files/
H A D0002-geninfo-Add-intermediate-JSON-format-support.patch114 +# that appear multiple times for the same lines/branches are not added.
156 + my $branches = $d->{"branches"};
178 + for my $b (@$branches) {
/OK3568_Linux_fs/kernel/tools/perf/scripts/python/
H A Dexport-to-sqlite.py121 branches = (columns == "branches") variable
205 if branches:
586 if branches:
703 if branches:
/OK3568_Linux_fs/yocto/poky/documentation/ref-manual/
H A Drelease-process.rst46 branches as and when they become available.
53 The concept is that branches of :term:`Metadata` with the same
90 Stable release branches have strong maintenance for about a year after
94 Community LTS trees and branches allow community members to share
169 You can find all these branches in the
172 Testing within these public branches ensures in a publicly visible way
/OK3568_Linux_fs/kernel/Documentation/process/
H A D7.AdvancedTopics.rst42 the tree, use branches, etc. An understanding of git's tools for the
45 remote branches, the index, fast-forward merges, pushes and pulls, detached
60 The normal git workflow involves the use of a lot of branches. Each line
65 Publicly-available branches should be created with care; merge in patches
66 from development branches when they are in complete form and ready to go -
97 of the reasons why development should be done in private branches (which
98 can be rewritten if necessary) and only moved into public branches when
/OK3568_Linux_fs/kernel/fs/ubifs/
H A Dmisc.h203 return (struct ubifs_branch *)((void *)idx->branches + in ubifs_idx_branch()
215 return (void *)((struct ubifs_branch *)idx->branches)->key; in ubifs_idx_key()
/OK3568_Linux_fs/buildroot/linux/
H A DConfig.ext.in143 https://sourceforge.net/p/aufs/aufs3-standalone/ref/master/branches/
145 https://github.com/sfjro/aufs4-standalone/branches/all
147 https://github.com/sfjro/aufs5-standalone/branches/all
/OK3568_Linux_fs/kernel/arch/m68k/ifpsp060/
H A Diskeleton.S60 | _isp_unimp() branches to here so that the operating system
88 | stack frame and branches to this routine.
123 | Integer Instruction stack frame and branches to this routine.
128 | stack frame and branches to the _real_trace() entry point.

12345678910>>...35