Home
last modified time | relevance | path

Searched refs:pad (Results 1 – 25 of 524) sorted by relevance

12345678910>>...21

/external/llvm/test/MC/COFF/
Dsection-name-encoding.s36 .macro pad_sections2 pad argument
38 .section p0\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1
39 .section p1\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1
40 .section p2\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1
41 .section p3\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1
42 .section p4\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad; .long 1
45 .macro pad_sections pad argument
47 pad_sections2 \pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad\pad
68 .macro pad_sections_ex pad argument
70 pad_sections \pad\pad\pad\pad\pad\pad\pad\pad\pad
/external/chromium_org/content/browser/gamepad/
Dgamepad_platform_data_fetcher_win.cc112 WebGamepad& pad = pads->items[pad_index]; in EnumerateDevices() local
113 if (xinput_available_ && GetXInputPadConnectivity(i, &pad)) { in EnumerateDevices()
131 WebGamepad& pad = pads->items[pad_index]; in EnumerateDevices() local
132 pad.connected = true; in EnumerateDevices()
141 swprintf(pad.id, WebGamepad::idLengthCap, in EnumerateDevices()
147 swprintf(pad.mapping, WebGamepad::mappingLengthCap, L"standard"); in EnumerateDevices()
149 pad.mapping[0] = 0; in EnumerateDevices()
200 WebGamepad* pad) const { in GetXInputPadConnectivity()
201 DCHECK(pad); in GetXInputPadConnectivity()
206 pad->connected = false; in GetXInputPadConnectivity()
[all …]
Dgamepad_provider.cc169 bool GamepadProvider::PadState::Match(const WebGamepad& pad) const { in Match()
170 return connected_ == pad.connected && in Match()
171 axes_length_ == pad.axesLength && in Match()
172 buttons_length_ == pad.buttonsLength && in Match()
173 memcmp(id_, pad.id, arraysize(id_)) == 0 && in Match()
174 memcmp(mapping_, pad.mapping, arraysize(mapping_)) == 0; in Match()
177 void GamepadProvider::PadState::SetPad(const WebGamepad& pad) { in SetPad() argument
178 DCHECK(pad.connected); in SetPad()
180 axes_length_ = pad.axesLength; in SetPad()
181 buttons_length_ = pad.buttonsLength; in SetPad()
[all …]
Dgamepad_platform_data_fetcher_linux.cc119 WebGamepad& pad = data_.items[index]; in RefreshDevice() local
135 pad.connected = false; in RefreshDevice()
142 pad.connected = false; in RefreshDevice()
191 memset(pad.id, 0, sizeof(pad.id)); in RefreshDevice()
192 tmp16.copy(pad.id, arraysize(pad.id) - 1); in RefreshDevice()
199 memset(pad.mapping, 0, sizeof(pad.mapping)); in RefreshDevice()
200 tmp16.copy(pad.mapping, arraysize(pad.mapping) - 1); in RefreshDevice()
202 pad.mapping[0] = 0; in RefreshDevice()
205 pad.connected = true; in RefreshDevice()
245 WebGamepad& pad = data_.items[index]; in ReadDeviceData() local
[all …]
Dgamepad_platform_data_fetcher_android.cc82 blink::WebGamepad& pad = pads->items[index]; in SetGamepadData() local
84 pad.connected = connected; in SetGamepadData()
86 pad.timestamp = timestamp; in SetGamepadData()
104 memcpy(pad.id, in SetGamepadData()
107 pad.id[name_to_copy] = 0; in SetGamepadData()
112 memcpy(pad.mapping, in SetGamepadData()
115 pad.mapping[mapping_to_copy] = 0; in SetGamepadData()
117 pad.timestamp = timestamp; in SetGamepadData()
125 pad.axesLength = std::min(static_cast<int>(axes.size()), in SetGamepadData()
129 for (unsigned int i = 0; i < pad.axesLength; i++) { in SetGamepadData()
[all …]
Dgamepad_platform_data_fetcher_mac.mm160 WebGamepad& pad = data_.items[slot];
164 pad.axesLength = 0;
165 pad.buttonsLength = 0;
166 pad.timestamp = 0;
167 memset(pad.axes, 0, sizeof(pad.axes));
168 memset(pad.buttons, 0, sizeof(pad.buttons));
181 pad.buttonsLength = std::max(pad.buttonsLength, button_index + 1);
192 pad.axesLength = std::max(pad.axesLength, axis_index + 1);
219 pad.axesLength = std::max(pad.axesLength, next_index + 1);
365 WebGamepad& pad = data_.items[slot];
[all …]
/external/wpa_supplicant_8/src/crypto/
Daes-omac1.c16 static void gf_mulx(u8 *pad) in gf_mulx() argument
20 carry = pad[0] & 0x80; in gf_mulx()
22 pad[i] = (pad[i] << 1) | (pad[i + 1] >> 7); in gf_mulx()
23 pad[AES_BLOCK_SIZE - 1] <<= 1; in gf_mulx()
25 pad[AES_BLOCK_SIZE - 1] ^= 0x87; in gf_mulx()
46 u8 cbc[AES_BLOCK_SIZE], pad[AES_BLOCK_SIZE]; in omac1_aes_128_vector() local
78 os_memset(pad, 0, AES_BLOCK_SIZE); in omac1_aes_128_vector()
79 aes_encrypt(ctx, pad, pad); in omac1_aes_128_vector()
80 gf_mulx(pad); in omac1_aes_128_vector()
92 gf_mulx(pad); in omac1_aes_128_vector()
[all …]
/external/valgrind/main/none/tests/s390x/
Dclcle.c16 register unsigned long pad asm ("6") = _pad; in clcle()
24 : "d" (pad) in clcle()
35 void testrun(void *_a1, unsigned long _l1, void *_a3, unsigned long _l3, char pad) in testrun() argument
41 cc = clcle(&a1, &l1, &a3, &l3, pad); in testrun()
47 void multiplex(unsigned long l1, unsigned long l3, char pad) in multiplex() argument
49 testrun(b1, l1, b1, l3, pad); in multiplex()
50 testrun(b1, l1, b2, l3, pad); in multiplex()
51 testrun(b1, l1, b3, l3, pad); in multiplex()
52 testrun(b1, l1, b4, l3, pad); in multiplex()
53 testrun(b2, l1, b2, l3, pad); in multiplex()
[all …]
Dclcl.c14 uint8_t pad; member
64 result.pad = (regs.r2p1 & 0xFF000000u) >> 24; in result_from_regs()
74 void *addr2, uint32_t len2, uint32_t pad) in clcl() argument
81 assert((pad & 0xFF) == pad); /* an 8-byte value */ in clcl()
89 r2p1 = len2 | (pad << 24); in clcl()
102 if (result1.pad != pad) in clcl()
120 if (result2.pad != pad) in clcl()
132 if (result1.pad != result2.pad) in clcl()
141 run_test(void *addr1, uint32_t len1, void *addr2, uint32_t len2, uint32_t pad) in run_test() argument
145 result = clcl(addr1, len1, addr2, len2, pad); in run_test()
Dmvcl.c14 uint8_t pad; member
65 result.pad = (regs.r2p1 & 0xFF000000u) >> 24; in result_from_regs()
75 void *addr2, uint32_t len2, uint32_t pad) in mvcl() argument
82 assert((pad & 0xFF) == pad); /* an 8-byte value */ in mvcl()
93 r2p1 = len2 | (pad << 24); in mvcl()
106 if (result1.pad != pad) in mvcl()
125 if (result2.pad != pad) in mvcl()
137 if (result1.pad != result2.pad) in mvcl()
159 run_test(void *dst, uint32_t dst_len, void *src, uint32_t src_len, uint32_t pad) in run_test() argument
163 result = mvcl(dst, dst_len, src, src_len, pad); in run_test()
/external/llvm/test/MC/ARM/
Deh-directive-pad-diagnostics.s4 @ Check the diagnostics for .pad directive.
11 @ TEST1: .pad before .fnstart
16 .pad #0
17 @ CHECK: error: .fnstart must precede .pad directive
18 @ CHECK: .pad #0
27 @ TEST2: .pad after .handlerdata
35 .pad #0
36 @ CHECK: error: .pad must precede .handlerdata directive
37 @ CHECK: .pad #0
Deh-directive-pad.s6 @ The .pad directive will track the stack pointer offsets. There are several
27 .pad #0
56 .pad #0x4
69 .pad #0x100
97 .pad #0x104
110 .pad #0x200
139 .pad #0x204
152 .pad #0x580
182 .pad #-0x4
195 .pad #-0x104
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Dcomment.js52 var pad = options.padding == null ? " " : options.padding;
62 self.replaceRange(baseString + commentString + pad, Pos(i, 0), Pos(i, cut));
67 self.replaceRange(commentString + pad, Pos(i, 0));
87 var pad = options.padding == null ? " " : options.padding;
93 self.replaceRange(pad + endString, Pos(end));
94 self.replaceRange(startString + pad, Pos(from.line, 0));
98 self.replaceRange(lead + pad, Pos(i, 0));
113 var pad = options.padding == null ? " " : options.padding, didSomething;
129 if (line.slice(endPos, endPos + pad.length) == pad) endPos += pad.length;
154 …self.replaceRange("", Pos(end, close - (pad && endLine.slice(close - pad.length, close) == pad ? p…
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
Dvia-mont.pl89 $pad=16*1; # amount of reserved bytes on top of every vector
132 &lea ("ecx",&DWP($pad,"","ecx",4)); # ecx becomes vector size in bytes
149 &lea ("ebp",&DWP(-$pad,"ecx"));
155 &lea ("ecx",&DWP((32+$pad)/4,"ecx"));# padded tp + scratch
159 &lea ("edi",&DWP(64+$pad,"esp","ecx",4));# pointer to ap copy
162 &mov ("ecx",$pad/4);
170 &mov ("ecx",$pad/4);
178 &mov ("ecx",$pad/4);
193 &lea ("ebp",&DWP(-$pad,"edi","ebp",4)); # so just "rewind"
230 &lea ("edi",&DWP(64+$pad,"esp","edx",4));# pointer to ap
[all …]
/external/openssl/crypto/bn/asm/
Dvia-mont.pl89 $pad=16*1; # amount of reserved bytes on top of every vector
132 &lea ("ecx",&DWP($pad,"","ecx",4)); # ecx becomes vector size in bytes
149 &lea ("ebp",&DWP(-$pad,"ecx"));
155 &lea ("ecx",&DWP((32+$pad)/4,"ecx"));# padded tp + scratch
159 &lea ("edi",&DWP(64+$pad,"esp","ecx",4));# pointer to ap copy
162 &mov ("ecx",$pad/4);
170 &mov ("ecx",$pad/4);
178 &mov ("ecx",$pad/4);
193 &lea ("ebp",&DWP(-$pad,"edi","ebp",4)); # so just "rewind"
230 &lea ("edi",&DWP(64+$pad,"esp","edx",4));# pointer to ap
[all …]
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
DSDL_sysmouse.c121 int run, pad, i; in WIN_CreateWMCursor()
145 pad = PAD_BITS(allowed_x)-run; in WIN_CreateWMCursor()
146 aptr = cursor->ands = (Uint8 *)SDL_malloc((run+pad)*allowed_y); in WIN_CreateWMCursor()
147 xptr = cursor->xors = (Uint8 *)SDL_malloc((run+pad)*allowed_y); in WIN_CreateWMCursor()
160 SDL_memset(xptr, 0, pad); in WIN_CreateWMCursor()
161 xptr += pad; in WIN_CreateWMCursor()
162 SDL_memset(aptr, ~0, pad); in WIN_CreateWMCursor()
163 aptr += pad; in WIN_CreateWMCursor()
165 pad += run; in WIN_CreateWMCursor()
167 SDL_memset(xptr, 0, pad); in WIN_CreateWMCursor()
[all …]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
DSDL_sysmouse.cc48 int run, pad, i; in BE_CreateWMCursor() local
79 pad = PADDED_BITS(allowed_x)-run; in BE_CreateWMCursor()
82 SDL_memset(cptr+run, 0, pad); in BE_CreateWMCursor()
84 cptr += (run+pad); in BE_CreateWMCursor()
87 SDL_memset(cptr, 0, run+pad); in BE_CreateWMCursor()
88 cptr += (run+pad); in BE_CreateWMCursor()
96 SDL_memset(cptr+run, 0, pad); in BE_CreateWMCursor()
98 cptr += (run+pad); in BE_CreateWMCursor()
101 SDL_memset(cptr, 0, run+pad); in BE_CreateWMCursor()
102 cptr += (run+pad); in BE_CreateWMCursor()
/external/kernel-headers/original/uapi/linux/
Dv4l2-subdev.h49 __u32 pad; member
62 __u32 pad; member
74 __u32 pad; member
88 __u32 pad; member
103 __u32 pad; member
119 __u32 pad; member
144 __u32 pad; member
152 __u32 pad; member
/external/skia/src/effects/
DSkBlurMask.cpp745 int pad = profile_size/2; in BlurRect() local
747 margin->set( pad, pad ); in BlurRect()
750 dst->fBounds.set(SkScalarRoundToInt(src.fLeft - pad), in BlurRect()
751 SkScalarRoundToInt(src.fTop - pad), in BlurRect()
752 SkScalarRoundToInt(src.fRight + pad), in BlurRect()
753 SkScalarRoundToInt(src.fBottom + pad)); in BlurRect()
812 uint8_t *blur_scanline = dp + (y+pad)*dstWidth + pad; in BlurRect()
825 for (int y = pad ; y < dstHeight-pad ; y++) { in BlurRect()
826 uint8_t *dst_scanline = dp + y*dstWidth + pad; in BlurRect()
830 for (int y = pad ; y < dstHeight-pad ; y++) { in BlurRect()
[all …]
/external/chromium_org/third_party/skia/src/effects/
DSkBlurMask.cpp745 int pad = profile_size/2; in BlurRect() local
747 margin->set( pad, pad ); in BlurRect()
750 dst->fBounds.set(SkScalarRoundToInt(src.fLeft - pad), in BlurRect()
751 SkScalarRoundToInt(src.fTop - pad), in BlurRect()
752 SkScalarRoundToInt(src.fRight + pad), in BlurRect()
753 SkScalarRoundToInt(src.fBottom + pad)); in BlurRect()
812 uint8_t *blur_scanline = dp + (y+pad)*dstWidth + pad; in BlurRect()
825 for (int y = pad ; y < dstHeight-pad ; y++) { in BlurRect()
826 uint8_t *dst_scanline = dp + y*dstWidth + pad; in BlurRect()
830 for (int y = pad ; y < dstHeight-pad ; y++) { in BlurRect()
[all …]
/external/skia/src/core/
DSkBBoxRecord.cpp122 SkScalar pad = (metrics.fBottom - metrics.fTop) / 2; in onDrawText() local
123 bbox.fLeft -= pad; in onDrawText()
124 bbox.fRight += pad; in onDrawText()
176 static SkScalar hack_373785_amend_pad(SkScalar pad) { in hack_373785_amend_pad() argument
177 return pad * 4; in hack_373785_amend_pad()
190 SkScalar pad = (metrics.fTop - metrics.fBottom) / 2; in onDrawPosText() local
191 pad = hack_373785_amend_pad(pad); in onDrawPosText()
192 bbox.fLeft += pad; in onDrawPosText()
193 bbox.fRight -= pad; in onDrawPosText()
212 SkScalar pad = top - bottom; in onDrawPosTextH() local
[all …]
/external/chromium_org/third_party/skia/src/core/
DSkBBoxRecord.cpp122 SkScalar pad = (metrics.fBottom - metrics.fTop) / 2; in onDrawText() local
123 bbox.fLeft -= pad; in onDrawText()
124 bbox.fRight += pad; in onDrawText()
176 static SkScalar hack_373785_amend_pad(SkScalar pad) { in hack_373785_amend_pad() argument
177 return pad * 4; in hack_373785_amend_pad()
190 SkScalar pad = (metrics.fTop - metrics.fBottom) / 2; in onDrawPosText() local
191 pad = hack_373785_amend_pad(pad); in onDrawPosText()
192 bbox.fLeft += pad; in onDrawPosText()
193 bbox.fRight -= pad; in onDrawPosText()
212 SkScalar pad = top - bottom; in onDrawPosTextH() local
[all …]
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
DglX_doc.py107 [s, pad] = p.packet_size()
114 if pad != None:
115 pad_str = pad
208 [s, pad] = output.packet_size()
210 if pad != None:
216 print ' %-8s %-15s unused, %s=pad(%s)' % (pad, "", pad, s)
223 [s, pad] = p.packet_size()
225 if pad != None:
231 print ' %-8s %-15s unused, %s=pad(%s)' % (pad, "", pad, s)
/external/mesa3d/src/mapi/glapi/gen/
DglX_doc.py107 [s, pad] = p.packet_size()
114 if pad != None:
115 pad_str = pad
208 [s, pad] = output.packet_size()
210 if pad != None:
216 print ' %-8s %-15s unused, %s=pad(%s)' % (pad, "", pad, s)
223 [s, pad] = p.packet_size()
225 if pad != None:
231 print ' %-8s %-15s unused, %s=pad(%s)' % (pad, "", pad, s)
/external/chromium_org/content/browser/resources/media/
Dutil.js33 function pad(num) { function
42 return pad(date.getUTCHours()) + ':' + pad(date.getUTCMinutes()) + ':' +
43 pad(date.getUTCSeconds()) + ' ' + pad((date.getMilliseconds()) % 1000);

12345678910>>...21