Home
last modified time | relevance | path

Searched refs:boundary (Results 1 – 25 of 129) sorted by relevance

123456

/device/linaro/bootloader/arm-trusted-firmware/include/lib/
Dutils_def.h49 #define round_boundary(value, boundary) \ argument
50 ((__typeof__(value))((boundary) - 1))
52 #define round_up(value, boundary) \ argument
53 ((((value) - 1) | round_boundary(value, boundary)) + 1)
55 #define round_down(value, boundary) \ argument
56 ((value) & ~round_boundary(value, boundary))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dgenerator.py206 boundary = msg.get_boundary()
207 if not boundary:
211 boundary = _make_boundary(alltext)
212 msg.set_boundary(boundary)
217 print >> self._fp, '--' + boundary
226 print >> self._fp, '\n--' + boundary
230 self._fp.write('\n--' + boundary + '--')
353 boundary = ('=' * 15) + (_fmt % token) + '=='
355 return boundary
356 b = boundary
[all …]
Dmessage.py696 boundary = self.get_param('boundary', missing)
697 if boundary is missing:
700 return utils.collapse_rfc2231_value(boundary).rstrip()
702 def set_boundary(self, boundary): argument
722 newparams.append(('boundary', '"%s"' % boundary))
730 newparams.append(('boundary', '"%s"' % boundary))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/
Dmultipart.py16 def __init__(self, _subtype='mixed', boundary=None, _subparts=None, argument
46 if boundary:
47 self.set_boundary(boundary)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/data/
Dmsg_38.txt2 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0"
5 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1"
9 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa2"
19 Unlike the test test_nested-multiples-with-internal-boundary, this
20 piece of text not only contains the outer boundary tags
49 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa3"
71 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa4"
Dmsg_39.txt2 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0"
5 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1"
9 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1"
31 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1"
53 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1"
Dmsg_42.txt1 Content-Type: multipart/mixed; boundary="AAA"
16 Content-Type: multipart/mixed; boundary="BBB"
Dmsg_12.txt6 Content-Type: multipart/mixed; boundary="BOUNDARY"
17 Content-Type: multipart/mixed; boundary="ANOTHER"
Dmsg_12a.txt6 Content-Type: multipart/mixed; boundary="BOUNDARY"
17 Content-Type: multipart/mixed; boundary="ANOTHER"
Dmsg_15.txt10 boundary="MS_Mac_OE_3071477847_720252_MIME_Part"
16 boundary="MS_Mac_OE_3071477847_720252_MIME_Part"
Dmsg_40.txt2 Content-Type: text/html; boundary="--961284236552522269"
Dmsg_23.txt2 Content-Type: multipart/mixed; boundary="BOUNDARY"
Dmsg_24.txt1 Content-Type: multipart/mixed; boundary="BOUNDARY"
Dmsg_31.txt3 Content-Type: multipart/mixed; boundary=BOUNDARY_
Dmsg_37.txt1 Content-Type: multipart/mixed; boundary=ABCDE
Dmsg_17.txt6 Content-Type: multipart/mixed; boundary="BOUNDARY"
/device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/common/drivers/parameter/
Dddr_parameter.c64 p.boundary = max_mb; in ddr_region_usage_parse()
116 if (p.ns_top[i] == p.boundary) in ddr_region_usage_parse()
126 p.s_top[p.s_nr] = p.boundary; in ddr_region_usage_parse()
Dddr_parameter.h28 uint64_t boundary; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_multifile.py46 boundary = msg.getparam("boundary")
49 mf.push(boundary)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dmimify.py51 def __init__(self, file, boundary): argument
53 self.boundary = boundary
62 if self.boundary:
63 if line == self.boundary + '\n':
66 if line == self.boundary + '--\n':
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
DMimeWriter.py145 def startmultipartbody(self, subtype, boundary=None, plist=[], prefix=1): argument
158 self._boundary = boundary or mimetools.choose_boundary()
/device/linaro/hikey/hifi/xaf/host-apf/playback/tinyalsa/
Dpcm.c244 unsigned int boundary; member
473 frames += pcm->boundary; in pcm_get_htimestamp()
474 else if (frames > (int)pcm->boundary) in pcm_get_htimestamp()
475 frames -= pcm->boundary; in pcm_get_htimestamp()
964 pcm->boundary = sparams.boundary = pcm->buffer_size; in pcm_open()
966 while (pcm->boundary * 2 <= INT_MAX - pcm->buffer_size) in pcm_open()
967 pcm->boundary *= 2; in pcm_open()
1053 avail += pcm->boundary; in pcm_mmap_playback_avail()
1054 else if (avail > (int)pcm->boundary) in pcm_mmap_playback_avail()
1055 avail -= pcm->boundary; in pcm_mmap_playback_avail()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dupload.py138 boundary = '--------------GHSKFJDLGDS7543FJKLFHRE75642756743254'
139 sep_boundary = '\n--' + boundary
168 'multipart/form-data; boundary=%s' % boundary,
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/
DIsZeroBuffer.nasm41 and ecx, 15 ; ecx + edi aligns on 16-byte boundary
44 cmova ecx, edx ; bytes before the 16-byte boundary
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/
DIsZeroBuffer.nasm41 and rcx, 15 ; rcx + rdi aligns on 16-byte boundary
44 cmova rcx, rdx ; bytes before the 16-byte boundary

123456