HomeSort by relevance Sort by last modified time
    Searched refs:Mode (Results 251 - 275 of 1286) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp4.c 399 EFI_SIMPLE_NETWORK_MODE Mode;
403 // Get IfType and HwAddressSize from SNP mode data.
405 Udp4->GetModeData (Udp4, NULL, NULL, NULL, &Mode);
412 Header->HwType = Mode.IfType;
413 Header->HwAddrLen = (UINT8) Mode.HwAddressSize;
414 CopyMem (Header->ClientHwAddr, &Mode.CurrentAddress, Header->HwAddrLen);
628 @param[in] Verified If TRUE, parse the ACK packet and store info into mode data.
641 EFI_PXE_BASE_CODE_MODE *Mode;
644 Mode = Private->PxeBc.Mode;
    [all...]
  /build/soong/third_party/zip/
writer_test.go 22 Mode os.FileMode
30 Mode: 0666,
36 Mode: 0644,
42 Mode: 0755 | os.ModeSetuid,
48 Mode: 0755 | os.ModeSetgid,
54 Mode: 0755 | os.ModeSymlink,
148 if wt.Mode != 0 {
149 header.SetMode(wt.Mode)
165 testFileMode(t, wt.Name, f, wt.Mode)
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 152 /// Mode of the analyzes while recursively visiting Decls.
246 void DisplayFunction(const Decl *D, AnalysisMode Mode,
256 if (Mode == AM_Syntax)
258 else if (Mode == AM_Path) {
271 assert(Mode == (AM_Syntax | AM_Path) && "Unexpected mode!");
306 /// \brief Determine which inlining mode should be used when this function is
317 /// \param Mode - determines if we are requesting syntax only or path
322 void HandleCode(Decl *D, AnalysisMode Mode,
338 AnalysisMode Mode = getModeForDecl(D, RecVisitorMode)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
datapart_decode.cpp 28 /* Purpose : Decode a frame of MPEG4 bitstream in datapartitioning mode. */
57 // oscl_memset(Mode, MODE_INTRA, sizeof(uint8)*nTotalMB);
63 // oscl_memset(Mode, MODE_INTER, sizeof(uint8)*nTotalMB);
132 /* Purpose : Decode Data Partitioned Mode Video Packet in I-VOP */
141 uint8 *Mode = video->headerInfo.Mode;
173 Mode[mbnum] = (uint8)(MBtype = MBtype_mode[MCBPC & 7]);
234 MBtype = Mode[mbnum];
235 /* No skipped mode in I-packets 3/1/2001 */
240 /* there is always acdcpred in DataPart mode 04/10/01 *
629 uint8 mode = video->headerInfo.Mode[mbnum]; local
    [all...]
  /development/samples/IntentPlayground/src/com/example/android/intentplayground/
BaseActivity.java 55 public enum Mode {LAUNCH, VERIFY, RESULT}
58 protected Mode mStatus = Mode.LAUNCH;
103 loadMode(Mode.LAUNCH);
131 * Initializes the UI for the specified {@link Mode}.
133 * @param mode The mode to display.
135 protected void loadMode(Mode mode) {
141 if (mode == Mode.LAUNCH)
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/PL061GpioDxe/
PL061Gpio.c 208 Mode - mode to set
213 EFI_UNSUPPORTED - Mode is not supported
221 IN EMBEDDED_GPIO_MODE Mode
230 switch (Mode)
264 Gets the mode (function) of a GPIO pin
270 Mode - pointer to output mode value
274 EFI_SUCCESS - mode value retrieved
275 EFI_INVALID_PARAMETER - Mode is a null pointer or Gpio pin is out of range
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
Transmit.c 53 Snp->Mode.HwAddressSize
58 (VOID *) &(Snp->Mode.CurrentAddress),
59 Snp->Mode.HwAddressSize
66 Snp->Mode.HwAddressSize
223 This->Mode->MediaHeaderSize, then EFI_INVALID_PARAMETER will be returned. If
224 BufferSize is less than This->Mode->MediaHeaderSize, then EFI_BUFFER_TOO_SMALL
242 be equal to This->Mode->MediaHeaderSize and the DestAddr and
253 is NULL, then This->Mode->CurrentAddress is used for the
300 switch (Snp->Mode.State) {
318 if (BufferSize < Snp->Mode.MediaHeaderSize) {
    [all...]
Start.c 95 Snp->Mode.State = EfiSimpleNetworkStarted;
136 switch (Snp->Mode.State) {
162 Snp->Mode.MCastFilterCount = 0;
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
InfoByHwMode.cpp 27 std::string llvm::getModeName(unsigned Mode) {
28 if (Mode == DefaultMode)
30 return (Twine('m') + Twine(Mode)).str();
59 MVT &ValueTypeByHwMode::getOrCreateTypeForMode(unsigned Mode, MVT Type) {
60 auto F = Map.find(Mode);
63 // If Mode is not in the map, look up the default mode. If it exists,
64 // make a copy of it for Mode and return it.
67 return Map.insert(std::make_pair(Mode, D->second)).first->second;
68 // If default mode is not present either, use provided Type
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
PxeBcDhcp.c 48 EFI_SIMPLE_NETWORK_MODE Mode;
51 Udp4->GetModeData (Udp4, NULL, NULL, NULL, &Mode);
60 Header->HwType = Mode.IfType;
61 Header->HwAddrLen = (UINT8) Mode.HwAddressSize;
62 CopyMem (Header->ClientHwAddr, &Mode.CurrentAddress, Header->HwAddrLen);
99 @param OfferIndex Index of cached packets as complements of pxe mode data,
112 EFI_PXE_BASE_CODE_MODE *Mode;
119 Mode = Private->PxeBc.Mode;
126 CopyMem (&Mode->ProxyOffer, &Offer->Dhcp4, Offer->Length);
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PorterDuffXfermodeTest.java 52 p.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC));
61 p.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST));
70 p.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SCREEN));
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/LegacyBiosPlatform/
LegacyBiosPlatform.h 92 IN EFI_GET_PLATFORM_INFO_MODE Mode,
107 Mode - Specifies what data to return
124 EFI_UNSUPPORTED - Mode is not supported on the platform.
134 IN EFI_GET_PLATFORM_HANDLE_MODE Mode,
148 Mode - Specifies what handle to return.
153 AdditionalData - Mode specific.
158 EFI_UNSUPPORTED - Mode is not supported on the platform.
190 IN EFI_GET_PLATFORM_HOOK_MODE Mode,
207 depending upon mode.
209 AdditionalData - Mode specific.
    [all...]
  /device/linaro/bootloader/edk2/Omap35xxPkg/Gpio/
Gpio.c 59 IN EMBEDDED_GPIO_MODE Mode
75 switch (Mode)
102 OUT EMBEDDED_GPIO_MODE *Mode
  /device/linaro/bootloader/edk2/Omap35xxPkg/LcdGraphicsOutputDxe/
LcdGraphicsOutputBlt.c 176 PixelInformation = &This->Mode->Info->PixelInformation;
177 FrameBufferBase = (UINTN *)((UINTN)(This->Mode->FrameBufferBase));
178 HorizontalResolution = This->Mode->Info->HorizontalResolution;
236 PixelInformation = &This->Mode->Info->PixelInformation;
237 HorizontalResolution = This->Mode->Info->HorizontalResolution;
238 FrameBufferBase = (UINTN *)((UINTN)(This->Mode->FrameBufferBase));
302 PixelInformation = &This->Mode->Info->PixelInformation;
303 HorizontalResolution = This->Mode->Info->HorizontalResolution;
304 FrameBufferBase = (UINTN *)((UINTN)(This->Mode->FrameBufferBase));
362 HorizontalResolution = This->Mode->Info->HorizontalResolution;
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
SourceSet.java 54 Normalizer.Mode m = Normalizer.NONE;
79 static void showSourceSet(String ID, Normalizer.Mode m, boolean lowerFirst) throws IOException {
96 static void showSourceSetAux(Transliterator t, Normalizer.Mode m, boolean lowerFirst, boolean forward) {
  /external/jsilver/src/com/google/streamhtmlparser/
HtmlParserFactory.java 66 * {@link HtmlParserFactory#createParserInMode(HtmlParser.Mode, Set)}
72 * valid in the {@link HtmlParser.Mode#JS} mode.
117 * @return an {@code HtmlParser} in the provided mode
125 * requested Mode. Provide non {@code null} options to provide
126 * a more precise initialization with the desired Mode.
128 * @param mode the mode to reset the parser with
130 * @return an {@code HtmlParser} in the provided mode
133 public static HtmlParser createParserInMode(HtmlParser.Mode mode
    [all...]
  /external/libchrome/mojo/core/
platform_shared_memory_mapping.cc 42 base::subtle::PlatformSharedMemoryRegion::Mode::kReadOnly
64 base::subtle::PlatformSharedMemoryRegion::Mode::kUnsafe) {
75 base::subtle::PlatformSharedMemoryRegion::Mode::kWritable);
  /external/llvm/lib/Support/
FileOutputBuffer.cpp 65 unsigned Mode = sys::fs::all_read | sys::fs::all_write;
68 Mode |= sys::fs::all_exe;
74 TempFilePath, Mode);
  /external/skia/bench/
PicturePlaybackBench.cpp 26 enum Mode { kTiled, kRandom };
29 TiledPlaybackBench(BBH bbh, Mode mode) : fBBH(bbh), fMode(mode), fName("tiled_playback") {
89 Mode fMode;
  /external/skqp/bench/
PicturePlaybackBench.cpp 26 enum Mode { kTiled, kRandom };
29 TiledPlaybackBench(BBH bbh, Mode mode) : fBBH(bbh), fMode(mode), fName("tiled_playback") {
89 Mode fMode;
  /external/v8/src/compiler/
machine-graph.cc 36 RelocInfo::Mode rmode) {
46 RelocInfo::Mode rmode) {
56 RelocInfo::Mode rmode) {
  /external/v8/src/debug/
debug-type-profile.cc 72 void TypeProfile::SelectMode(Isolate* isolate, debug::TypeProfile::Mode mode) {
75 if (mode == debug::TypeProfile::Mode::kNone) {
107 DCHECK_EQ(debug::TypeProfile::Mode::kCollect, mode);
110 isolate->set_type_profile_mode(mode);
  /external/vogar/test/vogar/android/
HostRuntimeLocalTargetTest.java 32 import vogar.Mode;
61 Mode hostRuntime = new HostRuntime(run, ModeId.HOST, Variant.X32);
120 Mode hostRuntime = new HostRuntime(run, ModeId.HOST, Variant.X32);
  /external/webrtc/webrtc/base/
filerotatingstream.h 84 enum Mode { kRead, kWrite };
90 Mode mode);
110 const Mode mode_;
  /frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
CryptoPlugin.h 40 using drm::V1_0::Mode;
78 Mode mode,
90 Mode mode,

Completed in 1496 milliseconds

<<11121314151617181920>>