/device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/ |
Mtftp6Support.c | 313 // Check the Ip6 mode data till timeout.
480 UINT8 *Mode;
491 Mode = Token->ModeStr;
493 if (Mode == NULL) {
494 Mode = (UINT8 *) "octet";
502 // | Opcode | Filename | 0 | Mode | 0 |
517 ModeLength = AsciiStrLen ((CHAR8 *) Mode);
534 // Copy the opcode, filename and mode into packet.
547 Status = AsciiStrCpyS ((CHAR8 *) Cur, BufferLength, (CHAR8 *) Mode);
729 // Get the current local address and port by get Udp6 mode data. [all...] |
/device/linaro/bootloader/edk2/OvmfPkg/Csm/CsmSupportLib/ |
LegacyPlatform.c | 344 @param Mode Specifies what handle to return. See EFI_GET_PLATFORM_HANDLE_MODE enum.
345 @param Type Mode specific. See EFI_GET_PLATFORM_HANDLE_MODE enum.
346 @param HandleBuffer Mode specific. See EFI_GET_PLATFORM_HANDLE_MODE enum.
347 @param HandleCount Mode specific. See EFI_GET_PLATFORM_HANDLE_MODE enum.
348 @param AdditionalData Mode specific. See EFI_GET_PLATFORM_HANDLE_MODE enum.
351 @retval EFI_UNSUPPORTED Mode is not supported on the platform.
359 IN EFI_GET_PLATFORM_HANDLE_MODE Mode,
397 // Process mode specific operations
399 switch (Mode) {
605 Invokes the specific sub function specified by Mode. [all...] |
/external/libchrome/base/memory/ |
shared_memory_unittest.cc | 111 enum class Mode { 118 class SharedMemoryTest : public ::testing::TestWithParam<Mode> { 122 case Mode::Default: 125 case Mode::DisableDevShm: 672 // Set a file mode creation mask that gives all permissions. 699 // Set a file mode creation mask that gives all permissions. 885 ::testing::Values(Mode::Default)); 889 ::testing::Values(Mode::DisableDevShm)); [all...] |
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
LzmaAlone.cs | 66 Mode,
86 // " -a{N}: set compression mode - [0, 1], default: 1 (max)\n" +
255 if (parser[(int)Key.Mode].ThereIs)
256 if (!GetNumber((string)parser[(int)Key.Mode].PostStrings[0], out algorithm))
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-ar/ |
llvm-ar.cpp | 339 // Utility function for printing out the file mode when the 't' operation is in 340 // verbose mode. 341 static void printMode(unsigned mode) { 342 outs() << ((mode & 004) ? "r" : "-"); 343 outs() << ((mode & 002) ? "w" : "-"); 344 outs() << ((mode & 001) ? "x" : "-"); 348 // the file names of each of the members. However, if verbose mode is requested 349 // ('v' modifier) then the file type, permission mode, user, group, size, and 355 sys::fs::perms Mode = ModeOrErr.get(); 356 printMode((Mode >> 6) & 007) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/ |
Analysis.cpp | 272 switch (Point.Mode) { 280 llvm_unreachable("invalid mode"); 404 const InstructionBenchmark::ModeE Mode = Clustering.getPoints()[0].Mode; 405 if (Mode == InstructionBenchmark::Latency) { 408 << "invalid number of measurements in latency mode: expected 1, got " 421 } else if (Mode == InstructionBenchmark::Uops) { 443 llvm::errs() << "unimplemented measurement matching for mode " << Mode
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
MinimalTypeDumper.cpp | 106 static std::string formatPointerMode(PointerMode Mode) { 107 switch (Mode) { 114 return formatUnknownEnum(Mode); 177 PointerMode Mode = Record.getMode(); 180 return formatv("mode = {0}, opts = {1}, kind = {2}", formatPointerMode(Mode), 467 std::string Type = (R.Mode == LabelType::Far) ? "far" : "near";
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
syscall_linux_mips64x.go | 132 Mode uint32 178 s.Mode = st.Mode
|
/external/v8/src/arm/ |
macro-assembler-arm.h | 315 void Call(Address target, RelocInfo::Mode rmode, Condition cond = al, 316 TargetAddressStorageMode mode = CAN_INLINE_TARGET_ADDRESS, 318 void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, 320 TargetAddressStorageMode mode = CAN_INLINE_TARGET_ADDRESS, 327 RelocInfo::Mode rmode) { 406 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al); 407 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); 547 void Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond = al); [all...] |
/frameworks/av/media/libmedia/ |
NdkWrapper.cpp | 160 static CryptoPlugin::Mode translateToCryptoPluginMode(cryptoinfo_mode_t mode) { 161 CryptoPlugin::Mode ret = CryptoPlugin::kMode_Unencrypted; 162 switch (mode) { 185 static cryptoinfo_mode_t translateToCryptoInfoMode(CryptoPlugin::Mode mode) { 187 switch (mode) { 670 int32_t mode; local 671 if (!meta.findInt32(kKeyCryptoMode, &mode)) { 672 mode = CryptoPlugin::kMode_AES_CTR [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/ |
Sa.c | 503 // If it is tunnel mode, should create the configuration payload after the
506 if (IkeSaSession->Spd->Data->ProcessingPolicy->Mode == EfiIPsecTransport) {
556 if (IkeSaSession->Spd->Data->ProcessingPolicy->Mode == EfiIPsecTransport) {
573 // Generate Notify Payload. If transport mode, there should have Notify
590 // Generate Tsr for Tunnel mode.
610 if (IkeSaSession->Spd->Data->ProcessingPolicy->Mode == EfiIPsecTunnel) {
616 if (IkeSaSession->Spd->Data->ProcessingPolicy->Mode == EfiIPsecTransport) {
840 // For the tunnel mode, it should add the vitual IP address into the SA's SPD Selector.
842 if (ChildSaSession->Spd->Data->ProcessingPolicy->Mode == EfiIPsecTunnel) {
845 // If it is tunnel mode, the UEFI part must be the initiator. [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/ |
PGOInstrumentation.cpp | 274 /// by the mode. In \c VM_counting mode, it simply counts the number of 275 /// select instructions. In \c VM_instrument mode, it inserts code to count 276 /// the number times TrueValue of select is taken. In \c VM_annotate mode, 285 VisitMode Mode = VM_counting; // Visiting mode. 296 Mode = VM_counting; 306 Mode = VM_instrument; 316 Mode = VM_annotate; 325 // Visit \p SI instruction and perform tasks according to visit mode [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/ |
StrGather.c | 119 UINT32 Mode;
375 if (mGlobals.Mode == MODE_SCAN) {
377 } else if (mGlobals.Mode == MODE_PARSE) {
434 // Always update the database if no errors and not in dump mode. If they specified -od
438 if ((mGlobals.Mode != MODE_DUMP) && (GetUtilityStatus () < STATUS_ERROR)) {
608 // Print the first line if in verbose mode
[all...] |
/external/skqp/dm/ |
DM.cpp | 400 static void push_codec_src(Path path, CodecSrc::Mode mode, CodecSrc::DstColorType dstColorType, 403 const bool simple = CodecSrc::kCodec_Mode == mode || CodecSrc::kAnimated_Mode == mode; 410 switch (mode) { 460 CodecSrc* src = new CodecSrc(path, mode, dstColorType, dstAlphaType, scale); 499 static void push_image_gen_src(Path path, ImageGenSrc::Mode mode, SkAlphaType alphaType, bool isGpu) 502 switch (mode) { 529 ImageGenSrc* src = new ImageGenSrc(path, mode, alphaType, isGpu) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
CodeViewYAMLTypes.cpp | 279 PointerMode &Mode) { 280 IO.enumCase(Mode, "Pointer", PointerMode::Pointer); 281 IO.enumCase(Mode, "LValueReference", PointerMode::LValueReference); 282 IO.enumCase(Mode, "PointerToDataMember", PointerMode::PointerToDataMember); 283 IO.enumCase(Mode, "PointerToMemberFunction", 285 IO.enumCase(Mode, "RValueReference", PointerMode::RValueReference); 420 IO.mapRequired("Mode", Record.Mode);
|
/external/v8/src/ppc/ |
macro-assembler-ppc.h | 212 // Set new rounding mode RN to FPSCR 215 // reset rounding mode to default (kRoundToNearest) 423 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al, 425 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al, 427 void Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond = al, 430 void Call(Address target, RelocInfo::Mode rmode, Condition cond = al); 431 void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, 436 RelocInfo::Mode rmode) { [all...] |
/external/v8/src/ia32/ |
assembler-ia32.h | 214 inline explicit Immediate(int x, RelocInfo::Mode rmode = RelocInfo::NONE) { 273 RelocInfo::Mode rmode() const { return rmode_; } 287 RelocInfo::Mode rmode_; 321 V8_INLINE explicit Operand(int32_t disp, RelocInfo::Mode rmode) { 334 RelocInfo::Mode rmode = RelocInfo::NONE); 338 int32_t disp, RelocInfo::Mode rmode = RelocInfo::NONE); 342 RelocInfo::Mode rmode = RelocInfo::NONE); 375 inline void set_dispr(int32_t disp, RelocInfo::Mode rmode) { 384 return ((buf_[0] & 0xF8) == 0xC0) // addressing mode is register only. 392 RelocInfo::Mode rmode_ = RelocInfo::NONE [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/ |
BasicTest.java | 1588 Normalizer.Mode mode; local 1625 destination, 3, 17, mode, 0); local 1635 destination, 3, 16, mode, 0); local 2560 public Normalizer.Mode mode; field in class:BasicTest.TestCompositionCase [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
BasicTest.java | 1585 Normalizer.Mode mode; local 1622 destination, 3, 17, mode, 0); local 1632 destination, 3, 16, mode, 0); local 2557 public Normalizer.Mode mode; field in class:BasicTest.TestCompositionCase [all...] |
/external/libchrome/mojo/core/ |
core.cc | 695 base::subtle::PlatformSharedMemoryRegion::Mode::kUnsafe, 1072 base::subtle::PlatformSharedMemoryRegion::Mode mode; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_texstate.c | 498 * setting the DOT3 mode did everything for you. On R200, the 1092 GLuint mode = 0; local [all...] |
/external/swiftshader/third_party/subzero/src/ |
IceInstARM32.h | 85 /// Memory operand addressing mode. 107 AddrMode Mode = Offset) { 109 OperandARM32Mem(Func, Ty, Base, ImmOffset, Mode); 112 /// this mode is disallowed in the NaCl sandbox. 116 AddrMode Mode = Offset) { 118 OperandARM32Mem(Func, Ty, Base, Index, ShiftOp, ShiftAmt, Mode); 125 AddrMode getAddrMode() const { return Mode; } 134 return (Mode & (4 << 21)) == 0; 153 ConstantInteger32 *ImmOffset, AddrMode Mode); 155 ShiftKind ShiftOp, uint16_t ShiftAmt, AddrMode Mode); [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
motion_est.cpp | 84 void RasterIntraUpdate(UChar *intraArray, UChar *Mode, Int totalMB, Int numRefresh); 147 UChar *mode_mb, *Mode = video->headerInfo.Mode; 225 RasterIntraUpdate(intraArray, Mode, totalMB, video->encParams->Refresh); 272 mode_mb = Mode + mbnum; 468 M4VENC_MEMSET(Mode, MODE_INTRA, sizeof(UChar)*totalMB); /* set this for MB level coding*/ [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/ |
Dhcp6Utility.c | 23 @param[in] Mode The pointer to the mode of SNP.
31 IN EFI_SIMPLE_NETWORK_MODE *Mode
134 Duid = AllocateZeroPool (10 + Mode->HwAddressSize);
142 Duid->Length = (UINT16) (Mode->HwAddressSize + 8);
151 CopyMem (Duid->Duid + 8, &Mode->CurrentAddress, Mode->HwAddressSize);
285 Clean up the mode data.
287 @param[in, out] ModeData The pointer to the mode data.
297 // Clean up all fields in mode data including the reference buffers, but do [all...] |
/external/swiftshader/third_party/LLVM/lib/Linker/ |
LinkModules.cpp | 339 unsigned Mode; // Mode to treat source module. 347 ModuleLinker(Module *dstM, Module *srcM, unsigned mode) 348 : DstM(dstM), SrcM(srcM), Mode(mode) { } 821 if (Mode == Linker::DestroySource) { [all...] |