Searched refs:padded (Results 1 - 11 of 11) sorted by relevance
/third_party/cJSON/tests/unity/test/ |
H A D | Makefile | 8 CFLAGS += -Wno-unused-macros -Wno-padded -Wno-missing-noreturn
|
/third_party/skia/third_party/externals/imgui/examples/example_null/ |
H A D | Makefile | 55 CXXFLAGS += -Weverything -Wno-reserved-id-macro -Wno-c++98-compat-pedantic -Wno-padded -Wno-c++11-long-long -Wno-poison-system-directories
|
/third_party/skia/src/core/ |
H A D | SkRemoteGlyphCache.cpp | 156 size_t padded = pad(fBytesRead, alignment); in ensureAtLeast() local 159 if (padded > fMemorySize) return nullptr; in ensureAtLeast() 160 if (size > fMemorySize - padded) return nullptr; in ensureAtLeast() 162 auto* result = fMemory + padded; in ensureAtLeast() 163 fBytesRead = padded + size; in ensureAtLeast()
|
/third_party/node/lib/internal/crypto/ |
H A D | random.js | 535 const padded = StringPrototypePadStart(hex, hex.length + (hex.length % 2), 0); 536 return Buffer.from(padded, 'hex');
|
/third_party/mesa3d/src/panfrost/lib/ |
H A D | pan_indirect_draw.c | 67 nir_ssa_def *padded; member 619 split_div(b, builder->instance_size.padded, in update_vertex_attribs() 624 builder->instance_size.padded, in update_vertex_attribs() 643 nir_ssa_def *div = nir_imul(b, instance_div, builder->instance_size.padded); in update_vertex_attribs() 714 nir_imul(b, builder->instance_size.padded, in update_varyings() 975 builder->instance_size.padded = in patch()
|
/third_party/unity/test/ |
H A D | Makefile | 8 CFLAGS += -Wno-unused-macros -Wno-padded -Wno-missing-noreturn
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | celt_pvq_search.asm | 209 ; int32 * outY - Should be aligned and padded buffer.
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | serialize.cpp | 1070 bool padded = blob_read_uint32(metadata); in read_shader_parameters() local 1076 NULL, state_indexes, padded); in read_shader_parameters()
|
/third_party/python/Lib/ |
H A D | ast.py | 343 def get_source_segment(source, node, *, padded=False): 349 If *padded* is `True`, the first line of a multi-line statement will 350 be padded with spaces to match its original position. 366 if padded:
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_conn.c | 2341 * conn_should_pad_pkt returns nonzero if the packet should be padded. 2558 int padded = 0; in conn_write_handshake_pkt() local 2771 padded = 1; in conn_write_handshake_pkt() 2785 if ((rtb_entry_flags & NGTCP2_RTB_ENTRY_FLAG_ACK_ELICITING) || padded) { in conn_write_handshake_pkt() 3136 padded. */ in conn_write_handshake_pkts() 3497 int padded = 0; in conn_write_pkt() local 4221 padded = 1; in conn_write_pkt() 4238 if ((rtb_entry_flags & NGTCP2_RTB_ENTRY_FLAG_ACK_ELICITING) || padded) { in conn_write_pkt() 4324 int padded = 0; in ngtcp2_conn_write_single_frame_pkt() local 4420 padded in ngtcp2_conn_write_single_frame_pkt() [all...] |
/third_party/python/Lib/test/ |
H A D | test_ast.py | 2282 self.assertEqual(ast.get_source_segment(s_orig, cdef.body[0], padded=True), 2304 self.assertEqual(ast.get_source_segment(s, cdef.body[0], padded=True), s_method)
|
Completed in 24 milliseconds