HomeSort by relevance Sort by last modified time
    Searched defs:Padding (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/tensorflow/tensorflow/compiler/xla/client/
padding.h 28 // Describes the padding applied for a windowed operation like
30 enum class Padding {
33 // 3x3, so that requires padding the 3x3 base area to 4x4.
36 // Use no padding. For example, for a 4x4 base area and a 2x2
41 // Validates that the slices are acceptable for determining padding -- this can
48 // Returns the padding needed for the base area, given the base area dimensions,
49 // window dimensions, strides, and the type of padding.
52 // v[i].first is the padding to the left (i.e. in the direction of
53 // lower indices) and v[i].second is the padding to the right (i.e. in
62 absl::Span<const int64> window_strides, Padding padding)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciHotPlugSupport.h 30 VOID *Padding;
201 Get resource padding if the specified PCI bridge is a hot plug bus.
  /external/tensorflow/tensorflow/core/util/
padding.h 19 // This file contains helper routines to deal with padding in various ops and
32 // Padding: the padding we apply to the input tensor along the rows and columns
34 // not shrink when we progress with convolutions. Two types of padding are
36 // VALID: No padding is carried out.
42 enum Padding {
43 VALID = 1, // No padding.
45 EXPLICIT = 3, // Padding is explicitly specified
48 // Returns an error if the padding attributes are invalid.
49 Status CheckValidPadding(Padding padding_type
    [all...]
  /external/tensorflow/tensorflow/lite/toco/tflite/
types.h 43 struct Padding {
44 static ::tflite::Padding Serialize(PaddingType padding_type);
45 static PaddingType Deserialize(int padding);
  /external/sfntly/cpp/src/sfntly/table/
subtable.h 50 virtual int32_t Padding() { return padding_; }
52 // Sets the amount of padding that is part of the data being used by this
54 void set_padding(int32_t padding) { padding_ = padding; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
SymbolRecordMapping.cpp 90 uint8_t Padding = 0;
94 error(IO.mapInteger(Padding));
135 uint16_t Padding = 0;
139 error(IO.mapInteger(Padding));
TypeRecordMapping.cpp 27 uint16_t Padding = 0;
28 error(IO.mapInteger(Padding));
436 uint16_t Padding = 0;
437 error(IO.mapInteger(Padding));
468 uint16_t Padding = 0;
469 error(IO.mapInteger(Padding));
477 uint16_t Padding = 0;
478 error(IO.mapInteger(Padding));
  /external/clang/lib/Sema/
TypeLocBuilder.cpp 92 unsigned Padding = NumBytesAtAlign4 % 8;
93 if (Padding == 0) {
95 // Everything is set: there's no padding and we don't need to add
99 // No existing padding; add in 4 bytes padding
104 assert(Padding == 4);
106 // Everything is set: there's 4 bytes padding and we don't need
110 // There are 4 bytes padding, but we don't need any; remove it.
119 // We have not seen any 8-byte aligned element yet. We insert a padding
126 unsigned Padding = NumBytesAtAlign4 % 8
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfilingBuffer.c 41 const uint8_t Padding = __llvm_profile_get_num_padding_bytes(NamesSize);
45 (CountersEnd - CountersBegin) * sizeof(uint64_t) + NamesSize + Padding;
InstrProfilingWriter.c 172 /* Write out the site value count array including padding space. */
255 const uint64_t Padding = __llvm_profile_get_num_padding_bytes(NamesSize);
257 /* Enough zeroes for padding. */
275 {Zeroes, sizeof(uint8_t), Padding}};
  /external/llvm/lib/DebugInfo/PDB/Raw/
PublicsStream.cpp 57 char Padding[2];
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootConfigNVDataStruc.h 43 UINT8 Padding;
  /external/bcc/src/cc/
json_map_decl_visitor.cc 139 uint64_t Padding = (FieldOffset - Offset).getQuantity();
140 if (Padding) {
141 /* Padding before this field with "char __pad_<FieldIndex>[Padding]". */
143 + to_string(Padding) + "]], ";
149 /* Additional Padding after the last field so that the Record Size matches */
  /external/clang/unittests/Lex/
HeaderMapTest.cpp 185 PaddingTy Padding;
195 auto &Padding = P.Padding;
204 // Add 'x' characters to cause an overflow into Padding.
210 Padding = 0xffffffff; // Padding won't stop it either.
230 auto &Padding = P.Padding;
239 // Add 'x' characters to cause an overflow into Padding.
245 Padding = 0xffffffff; // Padding won't stop it either
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenDepex/
GenDepex.c 160 " -P BOUNDARY The padding integer value to align the output file size",
234 IN UINT8 Padding OPTIONAL
310 Padding - OPTIONAL integer value to pad the output file to.
788 // Checks for invalid padding values
790 if (Padding < 0) {
792 printf ("The inputted padding value was %d\n", Padding);
793 printf ("The optional padding value can not be less than ZERO\n");
796 } else if (Padding > 0) {
798 while ((OutFileSize % Padding) != 0) {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6NvData.h 58 UINT8 Padding[3];
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/
QemuLoader.h 81 UINT8 Padding[124];
  /device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/
Virtio10.h 38 UINT8 Padding[3];
VirtioGpu.h 100 UINT32 Padding;
143 UINT32 Padding;
157 UINT32 Padding;
175 UINT32 Padding;
200 UINT32 Padding;
212 UINT32 Padding;
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
RawTypes.h 22 char Padding[2];
34 char Padding[2];
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 240 uint64_t Padding = OffsetToAlignment(getStream().tell(), Alignment);
241 WriteZeros(Padding);
    [all...]
  /external/llvm/lib/Support/
Timer.cpp 312 unsigned Padding = (80-Name.length())/2;
313 if (Padding > 80) Padding = 0; // Don't allow "negative" numbers
314 OS.indent(Padding) << Name << '\n';
  /external/swiftshader/third_party/LLVM/lib/Support/
Timer.cpp 327 unsigned Padding = (80-Name.length())/2;
328 if (Padding > 80) Padding = 0; // Don't allow "negative" numbers
329 OS.indent(Padding) << Name << '\n';
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
ELFObjectWriter.cpp 339 uint64_t Padding = OffsetToAlignment(W.OS.tell(), Alignment);
340 W.OS.write_zeros(Padding);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Timer.cpp 307 unsigned Padding = (80-Description.length())/2;
308 if (Padding > 80) Padding = 0; // Don't allow "negative" numbers
309 OS.indent(Padding) << Description << '\n';

Completed in 666 milliseconds

1 2 3