/openbmc/u-boot/common/eeprom/ |
H A D | eeprom_field.c | 14 char *delimiter, bool reverse) in __eeprom_field_print_bin() argument 17 int from = reverse ? field->size - 1 : 0; in __eeprom_field_print_bin() 18 int to = reverse ? 0 : field->size - 1; in __eeprom_field_print_bin() 21 for (i = from; i != to; reverse ? i-- : i++) in __eeprom_field_print_bin() 28 const char *value, bool reverse) in __eeprom_field_update_bin() argument 31 int k, j, i = reverse ? len - 1 : 0; in __eeprom_field_update_bin() 46 if ((reverse && i < 0) || (!reverse && i >= len)) in __eeprom_field_update_bin() 50 if (reverse && i == 0) { in __eeprom_field_update_bin() 55 tmp[k] = value[reverse ? i - 1 + k : i + k]; in __eeprom_field_update_bin() 63 i = reverse ? i - 2 : i + 2; in __eeprom_field_update_bin() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ |
H A D | test_landing_page.py | 10 from django.urls import reverse 36 self.get(reverse('landing')) 54 self.get(reverse('landing')) 70 self.get(reverse('landing')) 82 self.get(reverse('landing')) 95 self.get(reverse('landing')) 109 self.get(reverse('landing')) 128 self.get(reverse('landing')) 142 self.get(reverse('landing')) 156 self.get(reverse('landing')) [all …]
|
H A D | test_all_projects_page.py | 13 from django.urls import reverse 101 url = reverse('all-projects') 112 url = reverse('all-projects') 132 self.get(reverse('all-projects')) 167 self.get(reverse('all-projects')) 205 self.get(reverse('all-projects')) 215 expected_url = reverse( 227 expected_url = reverse('project', args=(self.project.id,)) 235 url = reverse('all-projects') 291 url = reverse('all-projects') [all …]
|
H A D | test_sample.py | 19 from django.urls import reverse 26 url = reverse('landing') 33 url = reverse('all-builds')
|
H A D | test_project_builds_page.py | 13 from django.urls import reverse 82 url = reverse('projectbuilds', args=(project_id,)) 129 url = reverse('projectbuilds', args=(self.project1.id,)) 144 url = reverse('projectbuilds', args=(self.default_project.id,)) 154 url = reverse('projectbuilds', args=(self.project1.id,))
|
H A D | test_all_builds_page.py | 13 from django.urls import reverse 94 url = reverse('builddashboard', args=(build.id,)) 176 url = reverse('all-builds') 198 url = reverse('all-builds') 226 url = reverse('all-builds') 259 url = reverse('all-builds') 291 url = reverse('all-builds') 324 url = reverse('all-builds') 351 url = reverse('all-builds') 429 url = reverse('all-builds') [all …]
|
H A D | test_project_config_page.py | 11 from django.urls import reverse 44 url = reverse('projectconf', args=(self.project1.id,)); 65 url = reverse('projectconf', args=(self.project1.id,)); 86 url = reverse('projectconf', args=(self.project1.id,)); 119 url = reverse('projectconf', args=(self.project1.id,)) 174 url = reverse('projectconf', args=(self.project1.id,))
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/views/ |
H A D | test_views.py | 16 from django.urls import reverse 67 response = self.client.get(reverse('all-projects'), follow=True) 74 url = reverse('all-projects') 95 layers_url = reverse('xhr_layerstypeahead', args=(self.project.id,)) 96 prj_url = reverse('xhr_projectstypeahead') 100 reverse('xhr_recipestypeahead', args=(self.project.id,)), 101 reverse('xhr_machinestypeahead', args=(self.project.id,))] 152 api_url = reverse('xhr_layer', args=(self.project.id,)) 184 url = reverse('xhr_customrecipe') 196 self.assertEqual(reverse('customrecipe', args=args), data['url']) [all …]
|
/openbmc/linux/net/x25/ |
H A D | x25_facilities.c | 78 facilities->reverse = p[1] & 0x81; in x25_parse_facilities() 84 facilities->reverse = p[1] & 0x01; in x25_parse_facilities() 90 facilities->reverse = p[1] & 0x80; in x25_parse_facilities() 96 facilities->reverse in x25_parse_facilities() 205 if (facilities->reverse && (facil_mask & X25_MASK_REVERSE)) { in x25_create_facilities() 207 *p++ = facilities->reverse; in x25_create_facilities() 263 * The only real problem is with reverse charging. 282 * They want reverse charging, we won't accept it. in x25_negotiate_facilities() 284 if ((theirs.reverse & 0x01 ) && (ours->reverse & 0x01)) { in x25_negotiate_facilities() 285 SOCK_DEBUG(sk, "X.25: rejecting reverse charging request\n"); in x25_negotiate_facilities() [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/patch/patch/ |
H A D | 0002-Fix-segfault-with-mangled-rename-patch.patch | 27 - p_name[! reverse] && 28 + p_name[reverse] && p_name[! reverse] && 29 + name_is_valid (p_name[reverse]) && 30 name_is_valid (p_name[! reverse])))
|
/openbmc/qemu/docs/system/ |
H A D | replay.rst | 194 Reverse debugging 197 Reverse debugging allows "executing" the program in reverse direction. 198 GDB remote protocol supports "reverse step" and "reverse continue" 202 Recorded executions may be used to enable reverse debugging. QEMU can't 208 - ``reverse-stepi`` (or ``rsi``) - step one instruction backwards 209 - ``reverse-continue`` (or ``rc``) - find last breakpoint in the past 211 Reverse step loads the nearest snapshot and replays the execution until 214 Reverse continue may include several passes of examining the execution 228 Therefore usage of the reverse debugging requires at least one snapshot 236 created in temporary overlay. This allows using reverse debugging, but with
|
/openbmc/linux/lib/ |
H A D | cpu_rmap.c | 3 * cpu_rmap.c: CPU affinity reverse-map support 13 * objects with CPU affinities. This can be seen as a reverse-map of 21 * alloc_cpu_rmap - allocate CPU affinity reverse-map 74 * @rmap: reverse-map allocated with alloc_cpu_rmap() 83 * @rmap: reverse-map allocated with alloc_cpu_rmap() 232 * free_irq_cpu_rmap - free a CPU affinity reverse-map used for IRQs 233 * @rmap: Reverse-map allocated with alloc_irq_cpu_map(), or %NULL 289 * irq_cpu_rmap_remove - remove an IRQ from a CPU affinity reverse-map 290 * @rmap: The reverse-map 300 * irq_cpu_rmap_add - add an IRQ to a CPU affinity reverse-map [all …]
|
/openbmc/openbmc/poky/meta-selftest/lib/devtool/ |
H A D | test.py | 4 """Reverse the value passed to verify the plugin is executing.""" 8 parser_build = subparsers.add_parser('selftest-reverse', help='Reverse value (for selftest)', 10 parser_build.add_argument('value', help='Value to reverse')
|
/openbmc/qemu/tests/avocado/ |
H A D | reverse_debugging.py | 1 # Reverse debugging test 24 Test GDB reverse debugging commands: reverse step and reverse continue. 26 VM snapshot to allow reverse execution. 29 After that the execution is replayed to the end, and reverse continue 138 self.fail('Reverse step is not supported by QEMU') 140 self.fail('Reverse continue is not supported by QEMU') 151 # visit the recorded instruction in reverse order 185 logger.info('running reverse continue to reach %x' % steps[-1]) 186 # reverse continue - will return after stopping at the breakpoint
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/ |
H A D | package_included_tabs.html | 23 {% if active_tab == "reverse" %} 29 …lp" title="The package runtime reverse dependencies (i.e. the packages in this image that depend o… 30 Reverse runtime dependencies ({{reverse_count}})
|
H A D | customrecipe.html | 93 <!-- package reverse dependencies modal --> 94 <div style="display:none" id="package-reverse-deps-modal" class="modal fade in" tabindex="-1" role=… 99 <h3><span class="package-to-rm-name"></span> reverse dependencies</h3> 102 …<p> <strong class="reverse-deps-count"></strong> <span class="reverse-deps-package"></span> in you… 103 <ul id="package-reverse-dep-list"> 105 … you must remove <span class="reverse-deps-this"></span> <strong class="reverse-deps-count"></stro… 108 …<p class="help-block text-left">Total package size: <strong id="package-reverse-deps-total-size"><… 109 …ton id="rm-package-reverse-deps-modal-btn" type="submit" class="btn btn-primary" data-dismiss="mod…
|
/openbmc/bmcweb/test/redfish-core/include/ |
H A D | filter_expr_executor_test.cpp | 52 // Reverse true conditions in TEST() 68 // Reverse false conditions in TEST() 88 // Reverse true conditions in TEST() 104 // Reverse false conditions in TEST() 124 // Reverse true conditions in TEST() 140 // Reverse false conditions in TEST() 161 // Reverse true conditions in TEST() 177 // Reverse false conditions in TEST() 227 // Reverse true conditions in TEST() 243 // Reverse false conditions in TEST()
|
/openbmc/linux/include/linux/ |
H A D | cpu_rmap.h | 6 * cpu_rmap.c: CPU affinity reverse-map support 16 * struct cpu_rmap - CPU affinity reverse-map 18 * @size: Number of objects to be reverse-mapped 52 * alloc_irq_cpu_rmap - allocate CPU affinity reverse-map for IRQs
|
/openbmc/linux/drivers/usb/typec/mux/ |
H A D | nb7vpq904m.c | 110 bool reverse = (nb7->orientation == TYPEC_ORIENTATION_REVERSE); in nb7vpq904m_set() local 145 if (reverse ^ nb7->swap_data_lanes) { in nb7vpq904m_set() 177 regmap_write(nb7->regmap, AUX_CC_REG, reverse ? 0x1 : 0x0); in nb7vpq904m_set() 217 reverse ^ nb7->swap_data_lanes ? in nb7vpq904m_set() 236 nb7vpq904m_set_channel(nb7, NB7_CHNA, !reverse); in nb7vpq904m_set() 237 nb7vpq904m_set_channel(nb7, NB7_CHNB, !reverse); in nb7vpq904m_set() 238 nb7vpq904m_set_channel(nb7, NB7_CHNC, reverse); in nb7vpq904m_set() 239 nb7vpq904m_set_channel(nb7, NB7_CHND, reverse); in nb7vpq904m_set() 241 nb7vpq904m_set_channel(nb7, NB7_CHNA, reverse); in nb7vpq904m_set() 242 nb7vpq904m_set_channel(nb7, NB7_CHNB, reverse); in nb7vpq904m_set() [all …]
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Association/ |
H A D | Definitions.interface.yaml | 4 endpoint/reverse. 9 An array of forward, reverse, endpoint tuples where: 11 reverse - The type of the association to create for the endpoint.
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | customrecipe.js | 8 var rmdPkgReverseDepsModalBtn = $("#rm-package-reverse-deps-modal-btn"); 88 var modal = $("#package-reverse-deps-modal"); 89 var depsList = modal.find("#package-reverse-dep-list"); 102 modal.find(".reverse-deps-count").text(depsCount); 103 modal.find(".reverse-deps-count-plus1").text((depsCount+1) + " packages"); 104 modal.find(".reverse-deps-depends").text(vDepends); 105 modal.find(".reverse-deps-package").text(vPackage); 106 modal.find(".reverse-deps-this").text(vThis); 117 modal.find("#package-reverse-deps-total-size").text( 194 revDepList = " and its " + depsRemovedLength + " reverse dependenc" + ending;
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templatetags/ |
H A D | project_url_tag.py | 6 from django.urls import reverse 32 return reverse('projectbuilds', args=(project.id,)) 34 return reverse('project', args=(project.id,))
|
/openbmc/linux/Documentation/mm/ |
H A D | ksm.rst | 20 Reverse mapping 22 KSM maintains reverse mapping information for KSM pages in the stable 32 more "dups". Each "dup" keeps reverse mapping information for a KSM 41 if compared to an unlimited list of reverse mappings. It is still
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/ |
H A D | functional_helpers.py | 17 from django.urls import reverse 157 projs = requests.get(self.live_server_url + reverse('newproject')) 161 …req = requests.get(self.live_server_url + reverse('xhr_projectstypeahead'), {'search': project_nam… 165 del_url = reverse('xhr_project', args=(result['id'],)) 169 self.get(reverse('newproject')) 201 …req = requests.get(self.live_server_url + reverse('xhr_projectstypeahead'), {'search': project_nam…
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/tinyproxy/tinyproxy/ |
H A D | tinyproxy.conf | 294 # Configure one or more ReversePath directives to enable reverse proxy 295 # support. With reverse proxying it's possible to make a number of 308 # When using tinyproxy as a reverse proxy, it is STRONGLY recommended 314 # Use a cookie to track reverse proxy mappings. If you need to reverse 320 # The URL that's used to access this reverse proxy. The URL is used to 322 # have a chain of reverse proxies, you'll need to put the outermost
|