Searched refs:component (Results 1 - 7 of 7) sorted by relevance

/fuchsia/zircon/kernel/arch/x86/
H A Dregisters.cpp44 // The first xsave component in the extended (non-legacy) area.
64 // Indexed by component. Components 0 and 1 are the "legacy" floating point and
69 // Total size of this component in bytes.
72 // If true, this component must be aligned to a 64-byte boundary.
76 /* Supported bits in XCR0 (each corresponds to a state component) */
78 /* Supported bits in IA32_XSS (each corresponds to a state component) */
142 // "The x87 state component comprises bytes 23:0 and bytes 159:32." This doesn't count the MXCSR
445 LTRACEF("component %d size: %u (xcr0 %d)\n",
570 void* x86_get_extended_register_state_component(void* register_state, uint32_t component, argument
572 if (component >
[all...]
/fuchsia/zircon/system/utest/fs-bench/
H A Dfs-bench.cpp78 // Advances current to the next component, following alphabetical order.
99 PathComponentGen component; local
103 path->Append(component.current);
105 component.Next();
/fuchsia/zircon/system/dev/display/intel-i915/
H A Ddisplay-device.cpp104 uint32_t encode_pipe_color_component(uint8_t component) { argument
106 return component << 2;
H A Dpipe.cpp64 uint32_t encode_pipe_color_component(uint8_t component) { argument
66 return component << 2;
/fuchsia/zircon/system/ulib/fs/
H A Dvfs.cpp474 // Look for the next '/' separated path component.
485 fbl::StringPiece component(path.data(), next_path - path.data());
486 if ((r = vfs_lookup(fbl::move(vn), &vn, component)) != ZX_OK) {
490 path.set(next_path + 1, path.length() - (component.length() + 1));
/fuchsia/zircon/kernel/arch/x86/include/arch/x86/
H A Dregisters.h223 /* Returns the address within the given xsave area of the requested state component. The state
224 * component indexes formats are described in section 13.4 of the Intel Software Developer's manual.
225 * Use the X86_XSAVE_STATE_INDEX_* macros above for the component indices.
228 * system is using. Since the save area can be compressed, the offset of each component can vary
233 * requested component, so if you're writing to both x87 and SSE states, make two separate calls
243 * The size of the component will be placed in *size.
245 * This function will return null and fill 0 into *size if the component is not present. */
246 void* x86_get_extended_register_state_component(void* register_state, uint32_t component,
/fuchsia/zircon/system/host/fidl/lib/
H A Dflat_ast.cpp630 for (const auto& component : using_directive->using_path->components) {
631 library_name.push_back(component->location().data());

Completed in 103 milliseconds