Searched refs:vec (Results 1 - 14 of 14) sorted by relevance

/barrelfish-2018-10-04/lib/libc/gen/
H A Dpututxline.c258 struct iovec vec[2]; local
269 vec[0].iov_base = &l;
270 vec[0].iov_len = sizeof(l);
271 vec[1].iov_base = __DECONST(void *, fu);
272 vec[1].iov_len = l;
278 if (_writev(fd, vec, 2) == -1)
/barrelfish-2018-10-04/lib/zlib/
H A Dcrc32.c69 unsigned long vec));
342 local unsigned long gf2_matrix_times(mat, vec)
344 unsigned long vec;
349 while (vec) {
350 if (vec & 1)
352 vec >>= 1;
/barrelfish-2018-10-04/lib/libc/net/
H A Dnsdispatch.c195 vector_sort(void *vec, unsigned int count, size_t esize, argument
198 qsort(vec, count, esize, comparison);
203 vector_search(const void *key, void *vec, unsigned int count, size_t esize, argument
206 return (bsearch(key, vec, count, esize, comparison));
211 vector_append(const void *elem, void *vec, unsigned int *count, size_t esize) argument
216 p = realloc(vec, (*count + ELEMSPERCHUNK) * esize);
219 return (vec);
221 vec = p;
223 memmove((void *)(((uintptr_t)vec) + (*count * esize)), elem, esize);
225 return (vec);
230 vector_ref(unsigned int i, void *vec, unsigned int count, size_t esize) argument
242 vector_free(void *vec, unsigned int *count, size_t esize, vector_free_elem free_elem) argument
[all...]
/barrelfish-2018-10-04/kernel/arch/x86_32/
H A Dirq.c505 //printk(LOG_NOTE, "irq: Allocated cap for vec: %d\n", i);
544 //printk(LOG_NOTE, "irq: connected vec: %"PRIu64"\n", dest_vec);
590 * \param vec Vector number of exception
595 void generic_handle_kernel_exception(int vec, uint32_t error, argument
601 if (vec == 666) {
605 assert(vec < NEXCEPTIONS);
609 printk(LOG_PANIC, "exception %d (error code 0x%"PRIx32"): ", vec, error);
611 switch(vec) {
707 gdb_handle_exception(vec, (uintptr_t*)save_area);
733 * \param vec Vecto
739 generic_handle_user_exception(uintptr_t *cpu_save_area, struct registers_x86_32 *disp_save_area, int vec, uint32_t error) argument
[all...]
/barrelfish-2018-10-04/kernel/arch/x86_64/
H A Dirq.c554 //printk(LOG_NOTE, "irq: Allocated cap for vec: %d\n", i);
593 //printk(LOG_NOTE, "irq: connected vec: %"PRIu64"\n", dest_vec);
639 * \param vec Vector number of exception
644 void generic_handle_kernel_exception(uint64_t vec, uint64_t error, argument
650 if (vec == 666) {
654 assert(vec < NEXCEPTIONS);
656 printk(LOG_PANIC, "exception %d (error code 0x%lx): ", (int)vec, error);
658 if (vec == ia32_vec_pf) {
671 } else if ((descr = ia32_exc_vec_describe(vec))) {
720 gdb_handle_exception(vec, gdb_save_fram
748 generic_handle_user_exception(int vec, uint64_t error, uintptr_t * NONNULL COUNT(X86_SAVE_AREA_SIZE) cpu_save_area, struct registers_x86_64 *disp_save_area) argument
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DGraphViewer.java801 Vector vec = ((Vector)(graph.currentSelection));
802 for(int i = 0; i < vec.size(); i++) {
803 ((Element)(vec.elementAt(i))).highlight &= ~GrappaConstants.HIGHLIGHT_MASK;
2028 Vector vec = ((Vector)(subg.currentSelection));
2029 for(int i = 0; i < vec.size(); i++) {
2030 ((Element)(vec.elementAt(i))).highlight &= ~HIGHLIGHT_MASK;
2042 Vector vec = ((Vector)(subg.currentSelection));
2043 for(int i = 0; i < vec.size(); i++) {
2044 ((Element)(vec.elementAt(i))).highlight &= ~HIGHLIGHT_MASK;
2073 Vector vec
[all...]
/barrelfish-2018-10-04/usr/monitor/
H A Dmonitor_rpc_server.c231 int vec; local
233 err = invoke_irqtable_alloc_vector(cap_irq, &vec);
241 err = invoke_irqtable_set(cap_irq, vec, ep);
245 err2 = b->tx_vtbl.irq_handle_response(b, NOP_CONT, err, vec);
/barrelfish-2018-10-04/include/vm/
H A Dvm_mmap.c731 char *vec; member in struct:mincore_args
747 char *vec; local
773 vec = uap->vec;
928 error = subyte(vec + lastvecindex, 0);
938 error = subyte(vec + vecindex, mincoreinfo);
969 error = subyte(vec + lastvecindex, 0);
/barrelfish-2018-10-04/lib/barrelfish/arch/x86_64/
H A Dldt.c479 * \param vec Vector number of exception
484 void generic_handle_exception(uint64_t vec, uint64_t error, argument
489 switch(vec) {
510 (int)vec, gdb_save_frame[GDB_X86_64_RIP_REG], error);
/barrelfish-2018-10-04/lib/cxx/cxx/
H A Dlocale.cpp830 ctype<wchar_t>::do_is(const char_type* low, const char_type* high, mask* vec) const
832 for (; low != high; ++low, ++vec)
833 *vec = static_cast<mask>(isascii(*low) ?
1246 ctype_byname<wchar_t>::do_is(const char_type* low, const char_type* high, mask* vec) const
1248 for (; low != high; ++low, ++vec)
1251 *vec = static_cast<mask>(ctype<char>::classic_table()[*low]);
1254 *vec = 0;
1257 *vec |= space;
1259 *vec |= print;
1261 *vec |
[all...]
/barrelfish-2018-10-04/lib/cxx/unwind/
H A DRegisters.hpp26 struct v128 { uint32_t vec[4]; }; member in struct:libunwind::v128
/barrelfish-2018-10-04/lib/tommath/
H A Dtommath.tex2648 the product vector $\vec x$ as follows.
2651 \vec x_n = \sum_{i+j = n} a_ib_j, \forall n \in \lbrace 0, 1, 2, \ldots, i + j \rbrace
2654 Where $\vec x_n$ is the $n'th$ column of the output vector. Consider the following example which computes the vector $\vec x$ for the multiplication
2683 \textbf{Input}. Vector $\vec x$ of dimension $k$ \\
2684 \textbf{Output}. Vector $\vec x$ such that the carries have been propagated. \\
2687 \hspace{3mm}1.1 $\vec x_{n+1} \leftarrow \vec x_{n+1} + \lfloor \vec x_{n}/\beta \rfloor$ \\
2688 \hspace{3mm}1.2 $\vec x
[all...]
H A Dbn.tex1067 $f(x) = \sum_{i=0}^{k} y_ix^k$ for any vector $\vec y$ then the array of digits in $\vec y$ are said to be
/barrelfish-2018-10-04/usr/eclipseclp/documents/applications/
H A Dtutorial.tex754 We can use multiple {\it foreacharg} keywords to scan multiple vectors at the same time, but we cannot use {\it foreacharg} to create terms\index{create terms} (we do not know the functor of the term). If we want to create a new term, we have to generate it with the right functor and arity before the {\it do} loop. The following code segment performs vector addition\index{vector addition} $\vec{C} = \vec{A}+ \vec{B}$.

Completed in 220 milliseconds