| /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/ |
| DependencyScanningService.cpp | 16 ScanningMode Mode, ScanningOutputFormat Format, bool ReuseFileManager, 18 : Mode(Mode), Format(Format), ReuseFileManager(ReuseFileManager),
|
| /src/sys/stand/efiboot/ |
| efigop.c | 49 if (EFI_ERROR(status) || gop->Mode == NULL) { 72 efi_gop_printmode(UINT32 mode, EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *info) 76 snprintf(buf, sizeof(buf), "%-5u: %ux%u %u", mode, 91 efi_gop_printmode(gop->Mode->Mode, gop->Mode->Info); 92 if (gop->Mode->FrameBufferBase != 0) { 94 (unsigned long)gop->Mode->FrameBufferBase, 95 (unsigned long)gop->Mode->FrameBufferSize); 111 for (UINT32 mode = 0; mode < gop->Mode->MaxMode; mode++) [all...] |
| efipxe.c | 77 if (pxe->Mode == NULL || 78 (!pxe->Mode->DhcpAckReceived && !pxe->Mode->PxeReplyReceived)) 86 if (net->Mode == NULL) 91 if (net->Mode->HwAddressSize == epi->addrsz && 92 memcmp(net->Mode->CurrentAddress.Addr, epi->mac.Addr, 93 net->Mode->HwAddressSize) == 0) { 108 epi->addrsz = net->Mode->HwAddressSize; 109 memcpy(epi->mac.Addr, net->Mode->CurrentAddress.Addr, epi->addrsz);
|
| /src/external/apache2/llvm/dist/llvm/lib/Remarks/ |
| RemarkSerializer.cpp | 21 remarks::createRemarkSerializer(Format RemarksFormat, SerializerMode Mode, 28 return std::make_unique<YAMLRemarkSerializer>(OS, Mode); 30 return std::make_unique<YAMLStrTabRemarkSerializer>(OS, Mode); 32 return std::make_unique<BitstreamRemarkSerializer>(OS, Mode); 38 remarks::createRemarkSerializer(Format RemarksFormat, SerializerMode Mode, 45 return std::make_unique<YAMLRemarkSerializer>(OS, Mode, std::move(StrTab)); 47 return std::make_unique<YAMLStrTabRemarkSerializer>(OS, Mode, 50 return std::make_unique<BitstreamRemarkSerializer>(OS, Mode,
|
| /src/external/gpl2/grep/dist/lib/ |
| isdir.c | 32 # define S_ISDIR(Mode) (((Mode) & S_IFMT) == S_IFDIR)
|
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/DependencyScanning/ |
| DependencyScanningService.h | 18 /// The mode in which the dependency scanner will operate to find the 21 /// This mode is used to compute the dependencies by running the preprocessor 26 /// This mode is used to compute the dependencies by running the preprocessor 49 DependencyScanningService(ScanningMode Mode, ScanningOutputFormat Format, 53 ScanningMode getMode() const { return Mode; } 66 const ScanningMode Mode;
|
| /src/sys/external/bsd/compiler_rt/dist/include/xray/ |
| xray_log_interface.h | 18 /// compiler-rt/xray. The "flight data recorder" (FDR) mode implementation uses 24 /// // We choose the mode which we'd like to install, and check whether this 25 /// // has succeeded. Each mode will have their own set of flags they will 31 /// // the currently selected mode. 36 /// // To do this, we provide the string flags configuration for the mode. 80 /// auto MyBufferProcessor = +[](const char* mode, XRayBuffer buffer) { 81 /// // Check the "mode" to see if it's something we know how to handle... 145 /// associating a mode to a particular logging implementation through 198 /// DEPRECATED: Use the mode registration workflow instead with 219 /// This function registers a logging implementation against a "mode" [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/ |
| RemarkSerializer.h | 25 Separate, // A mode where the metadata is serialized separately from the 29 Standalone // A mode where everything can be retrieved in the same 43 /// The serialization mode. 44 SerializerMode Mode; 50 SerializerMode Mode) 51 : SerializerFormat(SerializerFormat), OS(OS), Mode(Mode), StrTab() {} 77 createRemarkSerializer(Format RemarksFormat, SerializerMode Mode, 82 createRemarkSerializer(Format RemarksFormat, SerializerMode Mode,
|
| YAMLRemarkSerializer.h | 37 YAMLRemarkSerializer(raw_ostream &OS, SerializerMode Mode, 51 SerializerMode Mode, 68 /// Wether we already emitted the metadata in standalone mode. 72 YAMLStrTabRemarkSerializer(raw_ostream &OS, SerializerMode Mode) 73 : YAMLRemarkSerializer(Format::YAMLStrTab, OS, Mode) { 77 YAMLStrTabRemarkSerializer(raw_ostream &OS, SerializerMode Mode, 79 : YAMLRemarkSerializer(Format::YAMLStrTab, OS, Mode, std::move(StrTab)) {}
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| py-missing-debug.py | 27 class Mode(Enum): 38 self._mode = Mode.RETURN_NONE 44 if self._mode == Mode.RETURN_NONE: 47 if self._mode == Mode.RETURN_TRUE: 51 if self._mode == Mode.RETURN_FALSE: 54 if self._mode == Mode.RETURN_STRING: 66 def set_mode(self, mode, *args): 68 self._mode = mode 70 if mode == Mode.RETURN_NONE [all...] |
| py-missing-objfile.py | 52 class Mode(Enum): 65 self._mode = Mode.RETURN_NONE 74 if self._mode == Mode.RETURN_NONE: 77 if self._mode == Mode.RETURN_TRUE: 89 if self._mode == Mode.RETURN_FALSE: 92 if self._mode == Mode.RETURN_STRING: 104 def set_mode(self, mode, *args): 106 self._mode = mode 108 if mode == Mode.RETURN_NONE [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-missing-debug.py | 27 class Mode(Enum): 38 self._mode = Mode.RETURN_NONE 44 if self._mode == Mode.RETURN_NONE: 47 if self._mode == Mode.RETURN_TRUE: 51 if self._mode == Mode.RETURN_FALSE: 54 if self._mode == Mode.RETURN_STRING: 66 def set_mode(self, mode, *args): 68 self._mode = mode 70 if mode == Mode.RETURN_NONE [all...] |
| py-missing-objfile.py | 52 class Mode(Enum): 65 self._mode = Mode.RETURN_NONE 74 if self._mode == Mode.RETURN_NONE: 77 if self._mode == Mode.RETURN_TRUE: 89 if self._mode == Mode.RETURN_FALSE: 92 if self._mode == Mode.RETURN_STRING: 104 def set_mode(self, mode, *args): 106 self._mode = mode 108 if mode == Mode.RETURN_NONE [all...] |
| /src/external/apache2/llvm/dist/libcxx/benchmarks/ |
| map.bench.cpp | 22 // mode to test the benchmark. Since they are not meant to be benchmarked the 28 enum class Mode { Hit, Miss }; 30 struct AllModes : EnumValuesAsTuple<AllModes, Mode, 2> { 60 TestSets makeTestingSets(size_t MapSize, Mode mode, Shuffle shuffle, 71 R.Keys.push_back(mode == Mode::Hit ? 2 * I + 2 : 2 * I + 1); 114 auto Data = makeTestingSets(MapSize, Mode::Hit, Shuffle::None, 1); 135 auto Data = makeTestingSets(MapSize, Mode::Hit, Shuffle::None, 1); 156 auto Data = makeTestingSets(MapSize, Mode::Hit, Shuffle::None, 1000) [all...] |
| /src/sys/arch/i386/stand/efiboot/ |
| efipxe.c | 77 if (pxe->Mode == NULL || 78 (!pxe->Mode->DhcpAckReceived && !pxe->Mode->PxeReplyReceived)) 86 if (net->Mode == NULL) 91 if (net->Mode->HwAddressSize == epi->addrsz && 92 memcmp(net->Mode->CurrentAddress.Addr, epi->mac.Addr, 93 net->Mode->HwAddressSize) == 0) { 108 epi->addrsz = net->Mode->HwAddressSize; 109 memcpy(epi->mac.Addr, net->Mode->CurrentAddress.Addr, epi->addrsz);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| FloatingPointMode.h | 9 // Utilities for dealing with flags related to floating point mode controls. 21 /// Rounding mode. 29 /// the rounding mode values and the special value \c Dynamic must fit into the 32 /// rounding mode value, so it does not need to fit the bit fields. 35 // Rounding mode defined in IEEE-754. 43 Dynamic = 7, ///< Denotes mode unknown at compile time. 47 /// Returns text representation of the given rounding mode. 83 /// Denormal flushing mode for floating point instruction results in the 142 inline raw_ostream& operator<<(raw_ostream &OS, DenormalMode Mode) { 143 Mode.print(OS) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_log_interface.cc | 36 // We use a linked list of Mode to XRayLogImpl mappings. This is a linked list 41 const char *Mode; 65 __xray_log_register_mode(const char *Mode, 72 // First, look for whether the mode already has a registered implementation. 74 if (!internal_strcmp(Mode, it->Mode)) 79 NewModeImpl->Mode = internal_strdup(Mode); 86 __xray_log_select_mode(const char *Mode) XRAY_NEVER_INSTRUMENT { 89 if (!internal_strcmp(Mode, it->Mode)) [all...] |
| /src/sys/external/bsd/gnu-efi/dist/apps/ |
| lfbgrid.c | 65 if (gop->Mode) { 66 imax = gop->Mode->MaxMode; 68 Print(L"gop->Mode is NULL\n"); 80 gop->Mode ? gop->Mode->Mode : 0); 91 if (CompareMem(info, gop->Mode->Info, sizeof (*info))) 96 if (BufferSize == gop->Mode->FrameBufferSize) { 99 CopySize = BufferSize < gop->Mode->FrameBufferSize ? 100 BufferSize : gop->Mode->FrameBufferSize [all...] |
| modelist.c | 14 if (gop->Mode) { 15 imax = gop->Mode->MaxMode; 18 Print(L"gop->Mode is NULL\n"); 31 gop->Mode ? gop->Mode->Mode : 0); 42 (gop->Mode && 43 CompareMem(info,gop->Mode->Info,sizeof(*info)) == 0
|
| bltgrid.c | 40 if (gop->Mode) { 41 imax = gop->Mode->MaxMode; 43 Print(L"gop->Mode is NULL\n"); 55 gop->Mode ? gop->Mode->Mode : 0); 66 if (CompareMem(info, gop->Mode->Info, sizeof (*info))) 92 Print(L"Never found the active video mode?\n");
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| FileOutputBuffer.cpp | 78 unsigned Mode) 80 Mode(Mode) {} 101 openFileForWrite(FinalPath, FD, CD_CreateAlways, OF_None, Mode)) 112 unsigned Mode; 117 createInMemoryBuffer(StringRef Path, size_t Size, unsigned Mode) { 123 return std::make_unique<InMemoryBuffer>(Path, MB, Size, Mode); 127 createOnDiskBuffer(StringRef Path, size_t Size, unsigned Mode) { 129 fs::TempFile::create(Path + ".tmp%%%%%%%", Mode); 149 return createInMemoryBuffer(Path, Size, Mode); [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| InfoByHwMode.h | 33 std::string getModeName(unsigned Mode); 48 // Make sure that the default mode is last on the list. 85 InfoT &get(unsigned Mode) { 86 if (!hasMode(Mode)) { 88 Map.insert({Mode, Map.at(DefaultMode)}); 90 return Map.at(Mode); 92 const InfoT &get(unsigned Mode) const { 93 auto F = Map.find(Mode); 94 if (Mode != DefaultMode && F == Map.end()) 109 void makeSimple(unsigned Mode) { [all...] |
| /src/sys/external/bsd/acpica/dist/hardware/ |
| hwacpi.c | 3 * Module Name: hwacpi - ACPI Hardware Initialization/Mode Interface 57 * PARAMETERS: Mode - SYS_MODE_ACPI or SYS_MODE_LEGACY 61 * DESCRIPTION: Transitions the system into the requested mode. 67 UINT32 Mode) 77 /* If the Hardware Reduced flag is set, machine is always in acpi mode */ 86 * system does not support mode transition. 90 ACPI_ERROR ((AE_INFO, "No SMI_CMD in FADT, mode transition failed")); 97 * As old systems may have used zero for mode transition, 104 "No ACPI mode transition supported in this system " 109 switch (Mode) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| WithColor.h | 55 ColorMode Mode; 61 /// @param Mode Enable, disable or compute whether to use colors. 63 ColorMode Mode = ColorMode::Auto); 70 /// @param Mode Enable, disable or compute whether to use colors. 74 ColorMode Mode = ColorMode::Auto) 75 : OS(OS), Mode(Mode) {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| Debugify.h | 97 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo, 101 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo, 109 /// Track how much `debugify` information (in the `synthetic` mode only) 141 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo, 148 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo, 174 enum DebugifyMode Mode = DebugifyMode::NoDebugify; 182 bool WrapWithDebugify = Mode != DebugifyMode::NoDebugify && 199 super::add(createDebugifyFunctionPass(Mode, Name, DIPreservationMap)); 202 isSyntheticDebugInfo(), Name, DIStatsMap, Mode, DIPreservationMap, 206 super::add(createDebugifyModulePass(Mode, Name, DIPreservationMap)) [all...] |