Searched defs:bound (Results 1 - 8 of 8) sorted by relevance

/external/speex/libspeex/
H A Dfftwrap.c45 static int maximize_range(spx_word16_t *in, spx_word16_t *out, spx_word16_t bound, int len) argument
57 while (max_val <= (bound>>1) && max_val != 0)
H A Dmdf.c1108 /* Check for y in e (lower bound on RER) */
1110 spx_float_t bound = PSEUDOFLOAT(Sey); local
1111 bound = FLOAT_DIVU(FLOAT_MULT(bound, bound), PSEUDOFLOAT(ADD32(1,Syy)));
1112 if (FLOAT_GT(bound, PSEUDOFLOAT(See)))
1114 else if (tmp32 < FLOAT_EXTRACT32(bound))
1115 tmp32 = FLOAT_EXTRACT32(bound);
1122 /* Check for y in e (lower bound on RER) */
/external/v8/src/
H A Ddebug-agent.cc53 bool bound = false; local
54 while (!bound && !terminate_) {
55 bound = server_->Bind(port_);
60 if (!bound) {
67 // Accept connections on the bound port.
/external/bluetooth/glib/gthread/
H A Dgthread-posix.c306 gboolean bound,
331 if (bound)
302 g_thread_create_posix_impl(GThreadFunc thread_func, gpointer arg, gulong stack_size, gboolean joinable, gboolean bound, GThreadPriority priority, gpointer thread, GError **error) argument
H A Dgthread-win32.c492 gboolean bound,
488 g_thread_create_win32_impl(GThreadFunc func, gpointer data, gulong stack_size, gboolean joinable, gboolean bound, GThreadPriority priority, gpointer thread, GError **error) argument
/external/bluetooth/glib/glib/
H A Dgthread.c645 gboolean bound,
664 stack_size, joinable, bound, priority,
641 g_thread_create_full(GThreadFunc func, gpointer data, gulong stack_size, gboolean joinable, gboolean bound, GThreadPriority priority, GError **error) argument
/external/openssl/crypto/asn1/
H A Dasn_mime.c103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
283 char bound[33], c; local
299 RAND_pseudo_bytes((unsigned char *)bound, 32);
301 c = bound[i] & 0xf;
304 bound[i] = c;
306 bound[32] = 0;
313 bound, mime_eol, mime_eol);
317 BIO_printf(bio, "------%s%s", bound, mime_eol);
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eo
604 multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret) argument
912 mime_bound_check(char *line, int linelen, char *bound, int blen) argument
[all...]
/external/chromium/third_party/libevent/
H A Dhttp.c2278 struct evhttp_bound_socket *bound; local
2282 bound = malloc(sizeof(struct evhttp_bound_socket));
2283 if (bound == NULL)
2286 ev = &bound->bind_ev;
2295 free(bound);
2299 TAILQ_INSERT_TAIL(&http->sockets, bound, next);
2355 struct evhttp_bound_socket *bound; local
2359 while ((bound = TAILQ_FIRST(&http->sockets)) != NULL) {
2360 TAILQ_REMOVE(&http->sockets, bound, next);
2362 fd = bound
[all...]

Completed in 170 milliseconds