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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
jemalloc_wrapper.cpp 36 // The man page for memalign says it fails if boundary is not a power of 2,
39 void* je_memalign_round_up_boundary(size_t boundary, size_t size) {
40 if (boundary != 0) {
41 if (!powerof2(boundary)) {
42 boundary = BIONIC_ROUND_UP_POWER_OF_2(boundary);
45 boundary = 1;
47 return je_memalign(boundary, size);
  /external/icu/icu4c/source/samples/break/
break.cpp 44 void printEachForward( BreakIterator& boundary)
46 int32_t start = boundary.first();
47 for (int32_t end = boundary.next();
49 start = end, end = boundary.next())
51 printTextRange( boundary, start, end );
56 void printEachBackward( BreakIterator& boundary)
58 int32_t end = boundary.last();
59 for (int32_t start = boundary.previous();
61 end = start, start = boundary.previous())
63 printTextRange( boundary, start, end )
96 BreakIterator* boundary; local
    [all...]
ubreak.c 33 void printEachForward( UBreakIterator* boundary, UChar* str) {
35 int32_t start = ubrk_first(boundary);
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end =
37 ubrk_next(boundary)) {
44 void printEachBackward( UBreakIterator* boundary, UChar* str) {
46 int32_t end = ubrk_last(boundary);
47 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start,
48 start =ubrk_previous(boundary)) {
54 void printFirst(UBreakIterator* boundary, UChar* str) {
56 int32_t start = ubrk_first(boundary);
81 UBreakIterator *boundary; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
ContentImpl.java 17 private String boundary; field in class:ContentImpl
25 public ContentImpl( String content, String boundary ) {
28 this.boundary = boundary;
61 if (boundary == null) {
65 return "--" + boundary + "\r\n" + getContentTypeHeader() +
69 return "--" + boundary + "\r\n" + getContentTypeHeader() + "\r\n" + content.toString();
  /external/bison/src/
location.h 25 /* A boundary between two characters. */
28 /* The name of the file that contains the boundary. */
31 /* If nonnegative, the (origin-1) line that contains the boundary.
38 /* If nonnegative, the (origin-1) column just after the boundary.
47 } boundary; typedef in typeref:struct:__anon6629
51 boundary_set (boundary *b, const char *f, int l, int c)
61 boundary_cmp (boundary a, boundary b)
73 equal_boundaries (boundary a, boundary b
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
MimeBoundaryInputStream.java 29 * can be used to determine if a final boundary has been seen or not.
40 private byte[] boundary = null; field in class:MimeBoundaryInputStream
49 * @param boundary Boundary string (not including leading hyphens).
51 public MimeBoundaryInputStream(InputStream s, String boundary)
54 this.s = new PushbackInputStream(s, boundary.length() + 4);
56 boundary = "--" + boundary;
57 this.boundary = new byte[boundary.length()]
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/
MimeBoundaryInputStream.java 29 * can be used to determine if a final boundary has been seen or not.
40 private byte[] boundary = null; field in class:MimeBoundaryInputStream
49 * @param boundary Boundary string (not including leading hyphens).
51 public MimeBoundaryInputStream(InputStream s, String boundary)
54 this.s = new PushbackInputStream(s, boundary.length() + 4);
56 boundary = "--" + boundary;
57 this.boundary = new byte[boundary.length()]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/mime/
multipart.py 17 def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
27 boundary is the multipart boundary string. By default it is
47 if boundary:
48 self.set_boundary(boundary)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/mime/
multipart.py 17 def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
27 boundary is the multipart boundary string. By default it is
47 if boundary:
48 self.set_boundary(boundary)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
multipart.py 17 def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
27 boundary is the multipart boundary string. By default it is
47 if boundary:
48 self.set_boundary(boundary)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
multipart.py 17 def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
27 boundary is the multipart boundary string. By default it is
47 if boundary:
48 self.set_boundary(boundary)
  /external/tpm2/include/tpm2/
TpmBuildSwitches.h 16 #define ALIGN_TO(boundary) __attribute__ ((aligned(boundary)))
19 #define ALIGN_TO(boundary) __declspec(align(boundary))
24 // #define ALIGN_TO(boundary) _Alignas(boundary)
  /external/eigen/doc/special_examples/
Tutorial_sparse_example_details.cpp 9 Eigen::VectorXd& b, const Eigen::VectorXd& boundary)
11 int n = boundary.size();
14 if(i==-1 || i==n) b(id) -= w * boundary(j); // constrained coefficient
15 else if(j==-1 || j==n) b(id) -= w * boundary(i); // constrained coefficient
22 Eigen::ArrayXd boundary = Eigen::ArrayXd::LinSpaced(n, 0,M_PI).sin().pow(2); local
28 insertCoefficient(id, i-1,j, -1, coefficients, b, boundary);
29 insertCoefficient(id, i+1,j, -1, coefficients, b, boundary);
30 insertCoefficient(id, i,j-1, -1, coefficients, b, boundary);
31 insertCoefficient(id, i,j+1, -1, coefficients, b, boundary);
32 insertCoefficient(id, i,j, 4, coefficients, b, boundary);
    [all...]
  /external/compiler-rt/test/asan/TestCases/Posix/
large_allocator_unpoisons_on_free.cc 15 void *my_memalign(size_t boundary, size_t size) {
16 return memalign(boundary, size);
19 void *my_memalign(size_t boundary, size_t size) {
21 posix_memalign(&p, boundary, size);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips16-f.s 6 # align section end to 16-byte boundary for easier testing on multiple targets
12 # align section end to 16-byte boundary for easier testing on multiple targets
mips16-jalx.s 4 # align section end to 16-byte boundary for easier testing on multiple targets
mips-jalx.s 5 # align section end to 16-byte boundary for easier testing on multiple targets
mips16-e.s 8 # align section end to 16-byte boundary for easier testing on multiple targets
19 # align section end to 16-byte boundary for easier testing on multiple targets
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
mips16-hilo.s 6 # align section end to 16-byte boundary for easier testing on multiple targets
13 # align section end to 16-byte boundary for easier testing on multiple targets
  /external/icu/icu4c/source/i18n/
brktrans.cpp 102 int32_t boundary; local
103 for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next()) {
104 if (boundary == 0) continue;
107 UChar32 cp = sText.char32At(boundary-1);
112 cp = sText.char32At(boundary);
117 boundaries->addElement(boundary, status);
118 // printf("Boundary at %d\n", boundary)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
MultiPartWriter.java 42 private String boundary; field in class:MultiPartWriter
52 boundary = "jetty"+System.identityHashCode(this)+
69 out.write(boundary);
79 return boundary;
91 out.write(boundary);
120 out.write(boundary);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
thumbv6k.s 9 # arm-aout wants the segment padded to an 16-byte boundary;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m32r/
fslotx.s 2 # The FILL-SLOT attribute ensures the next insn begins on a 32 byte boundary.
4 # to a 32 bit boundary.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-d10v/
reloc-003.d 5 # Test 10 bit pc rel reloc bad boundary
reloc-011.d 5 # Test 10 bit pc rel reloc negative bad boundary.

Completed in 385 milliseconds

1 2 3 4 5 6 7 8 91011>>