Searched defs:boundary (Results 1 - 25 of 58) sorted by relevance

123

/external/compiler-rt/test/asan/TestCases/Posix/
H A Dlarge_allocator_unpoisons_on_free.cc15 void *my_memalign(size_t boundary, size_t size) { argument
16 return memalign(boundary, size);
19 void *my_memalign(size_t boundary, size_t size) { argument
21 posix_memalign(&p, boundary, size);
/external/icu/icu4c/source/samples/break/
H A Dbreak.cpp50 void printEachForward( BreakIterator& boundary) argument
52 int32_t start = boundary.first();
53 for (int32_t end = boundary.next();
55 start = end, end = boundary.next())
57 printTextRange( boundary, start, end );
62 void printEachBackward( BreakIterator& boundary) argument
64 int32_t end = boundary.last();
65 for (int32_t start = boundary.previous();
67 end = start, start = boundary.previous())
69 printTextRange( boundary, star
74 printFirst(BreakIterator& boundary) argument
82 printLast(BreakIterator& boundary) argument
90 printAt(BreakIterator &boundary, int32_t pos ) argument
102 BreakIterator* boundary; local
[all...]
H A Dubreak.c39 void printEachForward( UBreakIterator* boundary, UChar* str) { argument
41 int32_t start = ubrk_first(boundary);
42 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end =
43 ubrk_next(boundary)) {
50 void printEachBackward( UBreakIterator* boundary, UChar* str) { argument
52 int32_t end = ubrk_last(boundary);
53 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start,
54 start =ubrk_previous(boundary)) {
60 void printFirst(UBreakIterator* boundary, UChar* str) { argument
62 int32_t start = ubrk_first(boundary);
68 printLast(UBreakIterator* boundary, UChar* str) argument
77 printAt(UBreakIterator* boundary, int32_t pos , UChar* str) argument
87 UBreakIterator *boundary; local
[all...]
/external/webrtc/webrtc/system_wrappers/source/
H A Dmetrics_default.cc22 int boundary) { return NULL; }
21 HistogramFactoryGetEnumeration(const std::string& name, int boundary) argument
/external/eigen/doc/special_examples/
H A DTutorial_sparse_example_details.cpp9 Eigen::VectorXd& b, const Eigen::VectorXd& boundary)
11 int n = int(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);
8 insertCoefficient(int id, int i, int j, double w, std::vector<T>& coeffs, Eigen::VectorXd& b, const Eigen::VectorXd& boundary) argument
[all...]
/external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
H A DDecoder.java33 String boundary; field in class:Decoder
126 this.boundary = "--" + _bound;
137 // System.out.println("bound: '" + boundary + "'");
139 if (line.startsWith(boundary))
188 if (line.startsWith(boundary))
196 String deli = "\r\n" + boundary;
/external/libbrillo/brillo/http/
H A Dhttp_form_data_unittest.cc97 "Content-Type: multipart/form-data; boundary=\"Delimiter\"\r\n"
128 std::string boundary = field.GetBoundary(); local
129 boundaries.insert(boundary);
130 // Our generated boundary must be 16 character long and contain lowercase
132 EXPECT_EQ(16u, boundary.size());
134 boundary.find_first_not_of("0123456789abcdef"));
136 // Now make sure the boundary strings were generated at random, so we should
137 // get |count| unique boundary strings. However since the strings are random,
170 EXPECT_EQ("multipart/form-data; boundary=\"boundary1\"",
183 "Content-Type: multipart/mixed; boundary
[all...]
H A Dhttp_form_data.cc117 const std::string& boundary)
122 boundary_{boundary} {
145 "%s; boundary=\"%s\"", content_type_.c_str(), boundary_.c_str());
189 FormData::FormData(const std::string& boundary) argument
190 : form_data_{"", mime::multipart::kFormData, boundary} {
115 MultiPartFormField(const std::string& name, const std::string& content_type, const std::string& boundary) argument
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DContentImpl.java17 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();
H A DMultipartMimeContentImpl.java31 private String boundary; field in class:MultipartMimeContentImpl
33 public static String BOUNDARY = "boundary";
40 this.boundary = contentTypeHeader.getParameter(BOUNDARY);
128 ContentImpl content = new ContentImpl(rest, boundary);
/external/skia/src/core/
H A DSkDeviceLooper.cpp77 static bool next_tile(const SkIRect& boundary, int delta, SkIPoint* offset) { argument
79 if (offset->x() + delta < boundary.right()) {
85 offset->fX = boundary.left();
86 if (offset->y() + delta < boundary.bottom()) {
91 // offset is now outside of boundary, so we're done
/external/skqp/src/core/
H A DSkDeviceLooper.cpp77 static bool next_tile(const SkIRect& boundary, int delta, SkIPoint* offset) { argument
79 if (offset->x() + delta < boundary.right()) {
85 offset->fX = boundary.left();
86 if (offset->y() + delta < boundary.bottom()) {
91 // offset is now outside of boundary, so we're done
/external/speex/libspeex/
H A Dvq.c51 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries) argument
54 while (i<entries-1 && in>boundary[0])
56 boundary++;
62 int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries) argument
65 while (i<entries-1 && in>boundary[0])
67 boundary++;
/external/google-breakpad/src/common/
H A Dstabs_to_module.cc156 // Sort our boundary list, so we can search it quickly.
167 vector<Module::Address>::const_iterator boundary local
169 if (boundary != boundaries_.end())
170 f->size = *boundary - f->address;
176 // boundary table, only one can be the last.
/external/webrtc/webrtc/test/
H A Dhistogram.cc50 int boundary) {
49 HistogramFactoryGetEnumeration(const std::string& name, int boundary) argument
/external/eigen/test/
H A Dunalignedassert.cpp94 void construct_at_boundary(int boundary) argument
99 _buf += boundary; // make exact boundary-aligned
/external/icu/icu4c/source/i18n/
H A Dbrktrans.cpp104 int32_t boundary; local
105 for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next()) {
106 if (boundary == 0) continue;
109 UChar32 cp = sText.char32At(boundary-1);
114 cp = sText.char32At(boundary);
119 boundaries->addElement(boundary, status);
120 // printf("Boundary at %d\n", boundary);
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DMultipartBuilder.java74 private final ByteString boundary; field in class:MultipartBuilder
81 /** Creates a new multipart builder that uses a random boundary token. */
87 * Creates a new multipart builder that uses {@code boundary} to separate
91 public MultipartBuilder(String boundary) { argument
92 this.boundary = ByteString.encodeUtf8(boundary);
193 return new MultipartRequestBody(type, boundary, partHeaders, partBodies);
197 private final ByteString boundary; field in class:MultipartBuilder.MultipartRequestBody
203 public MultipartRequestBody(MediaType type, ByteString boundary, List<Headers> partHeaders, argument
207 this.boundary
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc88 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { argument
90 return asan_memalign(boundary, size, &stack, FROM_MALLOC);
93 INTERCEPTOR(void*, aligned_alloc, uptr boundary, uptr size) { argument
95 return asan_memalign(boundary, size, &stack, FROM_MALLOC);
98 INTERCEPTOR(void*, __libc_memalign, uptr boundary, uptr size) { argument
100 void *res = asan_memalign(boundary, size, &stack, FROM_MALLOC);
/external/curl/lib/
H A Dmime.h25 #define MIME_RAND_BOUNDARY_CHARS 16 /* Nb. of random boundary chars. */
50 MIMESTATE_BOUNDARY1, /* In boundary prefix. */
51 MIMESTATE_BOUNDARY2, /* In boundary. */
93 char *boundary; /* The part boundary. */ member in struct:curl_mime_s
/external/libmojo/base/android/java/src/org/chromium/base/metrics/
H A DRecordHistogram.java71 * Records a sample in an enumerated histogram of the given name and boundary. Note that
72 * |boundary| identifies the histogram - it should be the same at every invocation. This is the
75 * @param sample sample to be recorded, at least 0 and at most |boundary| - 1
76 * @param boundary upper bound for legal sample values - all sample values have to be strictly
77 * lower than |boundary|
79 public static void recordEnumeratedHistogram(String name, int sample, int boundary) { argument
82 long result = nativeRecordEnumeratedHistogram(name, key, sample, boundary);
285 String name, long key, int sample, int boundary);
284 nativeRecordEnumeratedHistogram( String name, long key, int sample, int boundary) argument
/external/libmojo/base/android/
H A Drecord_histogram.cc89 int32_t boundary = static_cast<int32_t>(j_boundary); local
91 CheckHistogramArgs(env, j_histogram_name, 1, boundary, boundary + 1,
98 LinearHistogram::FactoryGet(histogram_name, 1, boundary, boundary + 1,
/external/valgrind/coregrind/m_gdbserver/
H A Dvalgrind-low-mips32.c213 Addr boundary; local
226 boundary = pc & mask;
233 if (func_addr > boundary && func_addr <= bpaddr)
234 boundary = func_addr;
237 if (bpaddr == boundary)
H A Dvalgrind-low-mips64.c214 Addr boundary; local
227 boundary = pc & mask;
234 if (func_addr > boundary && func_addr <= bpaddr)
235 boundary = func_addr;
238 if (bpaddr == boundary)
/external/webrtc/webrtc/base/
H A Dmultipart.cc23 const std::string& boundary)
25 boundary_(boundary),
40 content_type->append("; boundary=");
22 MultipartStream(const std::string& type, const std::string& boundary) argument

Completed in 742 milliseconds

123