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

1 2

  /external/llvm/include/llvm/Support/
LEB128.h 39 unsigned Padding = 0) {
43 if (Value != 0 || Padding != 0)
49 if (Padding != 0) {
50 for (; Padding != 1; --Padding)
59 unsigned Padding = 0) {
64 if (Value != 0 || Padding != 0)
70 if (Padding != 0) {
71 for (; Padding != 1; --Padding)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_shader_tokens.h 51 unsigned Padding : 28;
63 unsigned Padding : 20;
124 unsigned Padding : 7;
136 unsigned Padding:16;
144 unsigned Padding : 23;
172 unsigned Padding : 8;
179 unsigned Padding : 22;
208 unsigned Padding : 10;
232 unsigned Padding : 12;
465 unsigned Padding : 1
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfilingBuffer.c 17 const uint64_t Padding = sizeof(uint64_t) - NamesSize % sizeof(uint64_t);
21 NamesSize + Padding;
40 const uint64_t Padding = sizeof(uint64_t) - NamesSize % sizeof(uint64_t);
42 /* Enough zeroes for padding. */
65 UPDATE_memcpy(Zeroes, Padding * sizeof(char));
InstrProfilingFile.c 30 const uint64_t Padding = sizeof(uint64_t) - NamesSize % sizeof(uint64_t);
32 /* Enough zeroes for padding. */
52 CHECK_fwrite(Zeroes, sizeof(char), Padding, File);
  /external/mesa3d/src/gallium/include/pipe/
p_shader_tokens.h 51 unsigned Padding : 28;
63 unsigned Padding : 20;
124 unsigned Padding : 7;
136 unsigned Padding:16;
144 unsigned Padding : 23;
172 unsigned Padding : 8;
179 unsigned Padding : 22;
208 unsigned Padding : 10;
232 unsigned Padding : 12;
465 unsigned Padding : 1
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLCipher.java 64 protected static enum Padding {
82 * The current cipher padding.
84 private Padding padding = Padding.PKCS5PADDING; field in class:OpenSSLCipher
121 protected OpenSSLCipher(Mode mode, Padding padding) {
123 this.padding = padding;
151 * Checks whether the cipher supports this particular cipher {@code padding}
180 final Padding padding; local
    [all...]
  /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 // No existing padding and misaligned members; add in 4 bytes padding
    [all...]
  /external/chromium_org/third_party/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/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_build.c 75 processor.Padding = 0;
112 declaration.Padding = 0;
188 dd.Padding = 0;
203 di.Padding = 0;
220 di.Padding = 0;
234 ds.Padding = 0;
253 ds.Padding = 0;
268 dr.Padding = 0;
496 immediate.Padding = 0;
595 instruction.Padding = 0
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 75 processor.Padding = 0;
112 declaration.Padding = 0;
188 dd.Padding = 0;
203 di.Padding = 0;
220 di.Padding = 0;
234 ds.Padding = 0;
253 ds.Padding = 0;
268 dr.Padding = 0;
496 immediate.Padding = 0;
595 instruction.Padding = 0
    [all...]
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 100 llvm::Type *Padding = nullptr) {
104 AI.setPaddingType(Padding);
128 llvm::Type *Padding = nullptr) {
134 AI.setPaddingType(Padding);
152 llvm::Type *Padding) {
155 AI.setPaddingType(Padding);
  /libcore/benchmarks/src/benchmarks/regression/
CipherBenchmark.java 71 @Param private Padding padding; field in class:CipherBenchmark
73 public enum Padding {
104 + padding.toString();
  /external/llvm/lib/Support/
Timer.cpp 325 unsigned Padding = (80-Name.length())/2;
326 if (Padding > 80) Padding = 0; // Don't allow "negative" numbers
327 OS.indent(Padding) << Name << '\n';
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_printf_test.cc 133 TEST(Printf, Padding) {
  /external/llvm/tools/yaml2obj/
yaml2coff.cpp 307 for (uint32_t Padding = 0; Padding < NumZeros; ++Padding)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tdh.h 80 ULONG padding; member in struct:_EVENT_PROPERTY_INFO::__anon30461::__anon30463
150 ULONG Padding;
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 39 /// and add padding if necessary.
47 /// and if it is possible to use that extra byte of padding we must use
59 /// code to access fields. Bitfields in tail position with tail padding may
61 /// that the tail padding is not used in the complete class.) However,
63 /// if we do not clip the tail padding off of the bitfield in the complete
174 /// padding that is or can potentially be used.
178 /// \brief Inserts padding everwhere it's needed.
240 // 3) Clip bitfield storages members if their tail padding is or might be
248 // 5) Insert padding everywhere it is needed. This phase requires 'Packed' to
250 // order to understand if explicit tail padding is needed
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_fpc.h 271 unsigned Padding : 6;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/truetype/
glyph_table.h 82 virtual int32_t Padding();
glyph_table.cc 226 int32_t GlyphTable::Glyph::Padding() {
228 return SubTable::Padding();
  /external/lldb/examples/python/
types.py 64 description='''This command will help check for padding in between
66 and how much padding was found. If no types are specified with the --types TYPENAME
73 description='''This command will help check for padding in between
75 and how much padding was found. One or more paths to executable files must be
96 (end_offset, padding) = verify_type_recursive (target, options, type, None, 0, 0, 0)
100 # print '%+4u <%u> padding' % (end_offset, last_member_padding)
101 # padding += last_member_padding
103 print 'Total pad bytes: %u' % (padding)
104 if padding > 0:
105 print 'Padding percentage: %2.2f %%' % ((float(padding) / float(byte_size)) * 100.0
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc.h 271 unsigned Padding : 6;
  /external/sfntly/cpp/src/sfntly/table/truetype/
glyph_table.h 82 virtual int32_t Padding();
glyph_table.cc 226 int32_t GlyphTable::Glyph::Padding() {
228 return SubTable::Padding();

Completed in 1014 milliseconds

1 2