Home
last modified time | relevance | path

Searched refs:Mode (Results 1 – 25 of 247) sorted by relevance

12345678910

/freebsd-12.1/contrib/compiler-rt/lib/xray/
H A Dxray_log_interface.cc41 const char *Mode; member
65 __xray_log_register_mode(const char *Mode, in __xray_log_register_mode() argument
74 if (!internal_strcmp(Mode, it->Mode)) in __xray_log_register_mode()
79 NewModeImpl->Mode = internal_strdup(Mode); in __xray_log_register_mode()
89 if (!internal_strcmp(Mode, it->Mode)) { in __xray_log_select_mode()
103 return CurrentMode->Mode; in __xray_log_get_current_mode()
150 if (CurrentMode == nullptr || internal_strcmp(CurrentMode->Mode, Mode) != 0) in __xray_log_init_mode()
161 __xray_log_init_mode_bin(const char *Mode, const char *Config, in __xray_log_init_mode_bin() argument
171 if (CurrentMode == nullptr || internal_strcmp(CurrentMode->Mode, Mode) != 0) in __xray_log_init_mode_bin()
204 auto Mode = CurrentMode ? CurrentMode->Mode : nullptr; in __xray_log_process_buffers() local
[all …]
/freebsd-12.1/sys/gnu/dts/arm/
H A Dexynos4412-itop-scp-core.dtsi169 op_mode = <1>; /* Normal Mode */
179 op_mode = <1>; /* Normal Mode */
187 op_mode = <1>; /* Normal Mode */
195 op_mode = <1>; /* Normal Mode */
208 op_mode = <1>; /* Normal Mode */
216 op_mode = <1>; /* Normal Mode */
223 op_mode = <1>; /* Normal Mode */
230 op_mode = <1>; /* Normal Mode */
237 op_mode = <1>; /* Normal Mode */
245 op_mode = <1>; /* Normal Mode */
[all …]
H A Dexynos4412-origen.dts152 op_mode = <1>; /* Normal Mode */
160 op_mode = <1>; /* Normal Mode */
168 op_mode = <1>; /* Normal Mode */
176 op_mode = <1>; /* Normal Mode */
184 op_mode = <1>; /* Normal Mode */
192 op_mode = <1>; /* Normal Mode */
200 op_mode = <1>; /* Normal Mode */
208 op_mode = <1>; /* Normal Mode */
216 op_mode = <1>; /* Normal Mode */
224 op_mode = <1>; /* Normal Mode */
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DSIModeRegister.cpp44 unsigned Mode; member
46 Status() : Mask(0), Mode(0){}; in Status()
48 Status(unsigned Mask, unsigned Mode) : Mask(Mask), Mode(Mode) { in Status()
49 Mode &= Mask; in Status()
55 return Status((Mask | S.Mask), ((Mode & ~S.Mask) | (S.Mode & S.Mask))); in merge()
67 unsigned NewMask = (Mask & S.Mask) & (Mode ^ ~S.Mode); in intersect()
68 unsigned NewMode = (Mode & NewMask); in intersect()
74 return Status((S.Mask & (Mode ^ S.Mode)) | (~Mask & S.Mask), S.Mode); in delta()
78 return (Mask == S.Mask) && (Mode == S.Mode); in operator ==()
84 return ((Mask & S.Mask) == S.Mask) && ((Mode & S.Mask) == S.Mode); in isCompatible()
[all …]
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DInfoByHwMode.h34 std::string getModeName(unsigned Mode);
87 InfoT &get(unsigned Mode) { in get()
88 if (!hasMode(Mode)) { in get()
90 Map.insert({Mode, Map.at(DefaultMode)}); in get()
92 return Map.at(Mode); in get()
94 const InfoT &get(unsigned Mode) const { in get()
95 auto F = Map.find(Mode); in get()
111 void makeSimple(unsigned Mode) { in makeSimple()
112 assert(hasMode(Mode) || hasDefault()); in makeSimple()
113 InfoT I = get(Mode); in makeSimple()
[all …]
H A DInfoByHwMode.cpp27 std::string llvm::getModeName(unsigned Mode) { in getModeName() argument
28 if (Mode == DefaultMode) in getModeName()
30 return (Twine('m') + Twine(Mode)).str(); in getModeName()
59 MVT &ValueTypeByHwMode::getOrCreateTypeForMode(unsigned Mode, MVT Type) { in getOrCreateTypeForMode() argument
60 auto F = Map.find(Mode); in getOrCreateTypeForMode()
67 return Map.insert(std::make_pair(Mode, D->second)).first->second; in getOrCreateTypeForMode()
69 return Map.insert(std::make_pair(Mode, Type)).first->second; in getOrCreateTypeForMode()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DFileOutputBuffer.cpp79 InMemoryBuffer(StringRef Path, MemoryBlock Buf, unsigned Mode) in InMemoryBuffer() argument
80 : FileOutputBuffer(Path), Buffer(Buf), Mode(Mode) {} in InMemoryBuffer()
104 unsigned Mode; member in __anon04b5950c0111::InMemoryBuffer
109 createInMemoryBuffer(StringRef Path, size_t Size, unsigned Mode) { in createInMemoryBuffer() argument
115 return llvm::make_unique<InMemoryBuffer>(Path, MB, Mode); in createInMemoryBuffer()
120 unsigned Mode) { in createOnDiskBuffer() argument
122 fs::TempFile::create(Path + ".tmp%%%%%%%", Mode); in createOnDiskBuffer()
159 unsigned Mode = fs::all_read | fs::all_write; in create() local
161 Mode |= fs::all_exe; in create()
189 return createOnDiskBuffer(Path, Size, !!(Flags & F_modify), Mode); in create()
[all …]
/freebsd-12.1/usr.sbin/ctm/ctm/
H A Dctm_syntax.c21 #define Mode CTM_F_Mode macro
37 { Name|File|New|Subst, Uid, Gid, Mode,
41 { Name|File|Subst, Uid, Gid, Mode,
45 { Name|File|Subst, Uid, Gid, Mode,
52 { Name|Subst, Uid, Gid, Mode, 0 };
55 { Name|Dir|New , Uid, Gid, Mode, 0 };
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/
H A DNSIndexPath.cpp89 m_impl.m_mode = Mode::Inlined; in Update()
122 m_impl.m_mode = Mode::Outsourced; in Update()
129 bool MightHaveChildren() override { return m_impl.m_mode != Mode::Invalid; } in MightHaveChildren()
144 enum class Mode { Inlined, Outsourced, Invalid }; enum in NSIndexPathSyntheticFrontEnd
149 case Mode::Inlined: in GetNumIndexes()
151 case Mode::Outsourced: in GetNumIndexes()
165 case Mode::Inlined: in GetIndexAtIndex()
167 case Mode::Outsourced: in GetIndexAtIndex()
290 m_mode = Mode::Invalid; in Clear()
295 Impl() : m_mode(Mode::Invalid) {} in Impl()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp262 void DisplayFunction(const Decl *D, AnalysisMode Mode, in DisplayFunction() argument
272 if (Mode == AM_Syntax) in DisplayFunction()
274 else if (Mode == AM_Path) { in DisplayFunction()
327 void HandleCode(Decl *D, AnalysisMode Mode,
341 if (Mode & AM_Syntax) in VisitDecl()
685 return Mode & ~AM_Path; in getModeForDecl()
688 return Mode; in getModeForDecl()
696 Mode = getModeForDecl(D, Mode); in HandleCode()
697 if (Mode == AM_None) in HandleCode()
706 DisplayFunction(D, Mode, IMode); in HandleCode()
[all …]
/freebsd-12.1/stand/efi/libefi/
H A Defi_console.c82 *x = conout->Mode->CursorColumn; in get_pos()
83 *y = conout->Mode->CursorRow; in get_pos()
92 *_x = conout->Mode->CursorColumn; in curs_move()
94 *_y = conout->Mode->CursorRow; in curs_move()
136 conout->QueryMode(conout, conout->Mode->Mode, &x, &y); in efi_cons_rawputchar()
219 conout->QueryMode(conout, conout->Mode->Mode, &x, &y); in CD()
261 conout->QueryMode(conout, conout->Mode->Mode, &x, &y); in CL()
/freebsd-12.1/sys/dev/smartpqi/
H A Dsmartpqi_ioctl.h57 BYTE Mode:2; /* b00 */ member
62 BYTE Mode:2; /* b01 */ member
68 BYTE Mode:2; /* b10 */ member
76 DWORD Mode:2; member
83 DWORD Mode:2; member
/freebsd-12.1/contrib/compiler-rt/include/xray/
H A Dxray_log_interface.h232 XRayLogRegisterStatus __xray_log_register_mode(const char *Mode,
245 XRayLogRegisterStatus __xray_log_select_mode(const char *Mode);
291 XRayLogInitStatus __xray_log_init_mode(const char *Mode, const char *Config);
297 XRayLogInitStatus __xray_log_init_mode_bin(const char *Mode, const char *Config,
/freebsd-12.1/sys/contrib/dev/acpica/components/hardware/
H A Dhwacpi.c175 UINT32 Mode) in AcpiHwSetMode() argument
217 switch (Mode) in AcpiHwSetMode()
258 if (AcpiHwGetMode () == Mode) in AcpiHwSetMode()
261 "Mode %X successfully enabled\n", Mode)); in AcpiHwSetMode()
/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DVPlanSLP.cpp242 VPlanSlp::getBest(OpMode Mode, VPValue *Last, in getBest() argument
245 assert((Mode == OpMode::Load || Mode == OpMode::Opcode) && in getBest()
267 return {Mode, BestCandidates[0]}; in getBest()
297 return {Mode, Best}; in getBest()
302 SmallVector<OpMode, 4> Mode; in reorderMultiNodeOps() local
304 Mode.reserve(MultiNodeOps.size()); in reorderMultiNodeOps()
312 Mode.push_back(OpMode::Load); in reorderMultiNodeOps()
314 Mode.push_back(OpMode::Opcode); in reorderMultiNodeOps()
331 if (Mode[Op] == OpMode::Failed) in reorderMultiNodeOps()
336 getBest(Mode[Op], Last, Candidates, IAI); in reorderMultiNodeOps()
/freebsd-12.1/sys/dev/ciss/
H A Dcissio.h112 u_int8_t Mode:2; member
117 u_int8_t Mode:2; member
123 u_int8_t Mode:2; member
130 u_int32_t Mode:2; member
136 u_int32_t Mode:2; member
/freebsd-12.1/tools/tools/ath/athprom/
H A Deeprom-39 | A Mode $Amode | B Mode $Bmode | G Mode $Gmode |
75 | A Mode $Amode | B Mode $Bmode | G Mode $Gmode |
123 | A Mode $Amode | B Mode $Bmode | G Mode $Gmode |
H A Deeprom-411 | A Mode $Amode | B Mode $Bmode | G Mode $Gmode |
84 | A Mode $Amode | B Mode $Bmode | G Mode $Gmode |
149 | A Mode $Amode | B Mode $Bmode | G Mode $Gmode |
H A Deeprom-512 | A Mode $Amode | B Mode $Bmode | G Mode $Gmode |
98 | A Mode $Amode | B Mode $Bmode | G Mode $Gmode |
176 | A Mode $Amode | B Mode $Bmode | G Mode $Gmode |
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp256 switch (Mode) { in getLoadStoreMultipleOpcode()
265 switch (Mode) { in getLoadStoreMultipleOpcode()
277 switch (Mode) { in getLoadStoreMultipleOpcode()
285 switch (Mode) { in getLoadStoreMultipleOpcode()
292 switch (Mode) { in getLoadStoreMultipleOpcode()
300 switch (Mode) { in getLoadStoreMultipleOpcode()
307 switch (Mode) { in getLoadStoreMultipleOpcode()
314 switch (Mode) { in getLoadStoreMultipleOpcode()
321 switch (Mode) { in getLoadStoreMultipleOpcode()
328 switch (Mode) { in getLoadStoreMultipleOpcode()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DFileSystem.h463 std::error_code access(const Twine &Path, AccessMode Mode);
915 OpenFlags Flags, unsigned Mode = 0666);
933 unsigned Mode = 0666);
953 OpenFlags Flags = OF_None, unsigned Mode = 0666) {
954 return openFile(Name, ResultFD, Disp, FA_Write, Flags, Mode);
973 unsigned Mode = 0666) {
974 return openNativeFile(Name, Disp, FA_Write, Flags, Mode);
995 unsigned Mode = 0666) {
1016 return openNativeFile(Name, Disp, FA_Write | FA_Read, Flags, Mode);
1090 mapmode Mode; variable
[all …]
/freebsd-12.1/stand/efi/loader/
H A Dframebuffer.c473 return (efifb_from_gop(efifb, gop->Mode, gop->Mode->Info)); in efi_find_framebuffer()
564 for (mode = 0; mode < gop->Mode->MaxMode; mode++) { in gop_autoresize()
568 efifb_from_gop(&efifb, gop->Mode, info); in gop_autoresize()
602 for (i = 0; i < conout->Mode->MaxMode; i++) { in text_autoresize()
703 efifb_from_gop(&efifb, gop->Mode, gop->Mode->Info); in command_gop()
704 print_efifb(gop->Mode->Mode, &efifb, 1); in command_gop()
713 for (mode = 0; mode < gop->Mode->MaxMode; mode++) { in command_gop()
717 efifb_from_gop(&efifb, gop->Mode, info); in command_gop()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_unwind_win.cc63 stack_frame.AddrPC.Mode = AddrModeFlat; in SlowUnwindStackWithContext()
64 stack_frame.AddrFrame.Mode = AddrModeFlat; in SlowUnwindStackWithContext()
65 stack_frame.AddrStack.Mode = AddrModeFlat; in SlowUnwindStackWithContext()
/freebsd-12.1/gnu/usr.bin/grep/
H A Dsystem.h106 # define S_ISDIR(Mode) (((Mode) & S_IFMT) == S_IFDIR) argument
109 # define S_ISREG(Mode) (((Mode) & S_IFMT) == S_IFREG) argument
H A Disdir.c30 # define S_ISDIR(Mode) (((Mode) & S_IFMT) == S_IFDIR) argument

12345678910