Searched refs:ob (Results 1 - 25 of 45) sorted by relevance

12

/freebsd-11-stable/usr.bin/xlint/common/
H A Demit.c50 ob_t ob; variable
69 ob.o_len = 1024;
70 ob.o_end = (ob.o_buf = ob.o_nxt = xmalloc(ob.o_len)) + ob.o_len;
93 coffs = ob.o_nxt - ob.o_buf;
94 ob
[all...]
H A Dexterns.h56 extern ob_t ob;
H A Dlint.h121 typedef struct ob { struct
/freebsd-11-stable/usr.bin/xlint/lint1/
H A Demit.c52 ob_t ob; variable
71 ob.o_len = 1024;
72 ob.o_end = (ob.o_buf = ob.o_nxt = xmalloc(ob.o_len)) + ob.o_len;
94 coffs = ob.o_nxt - ob.o_buf;
95 ob
[all...]
H A Demit1.c169 tmp = ob;
170 ob = tob;
171 ob.o_nxt = ob.o_buf;
174 tob = ob;
175 ob = tmp;
H A Dlint.h113 typedef struct ob { struct
/freebsd-11-stable/contrib/gcc/
H A Dunwind-dw2-fde.c78 __register_frame_info_bases (const void *begin, struct object *ob, argument
85 ob->pc_begin = (void *)-1;
86 ob->tbase = tbase;
87 ob->dbase = dbase;
88 ob->u.single = begin;
89 ob->s.i = 0;
90 ob->s.b.encoding = DW_EH_PE_omit;
92 ob->fde_end = NULL;
98 ob->next = unseen_objects;
99 unseen_objects = ob;
105 __register_frame_info(const void *begin, struct object *ob) argument
113 struct object *ob; local
128 __register_frame_info_table_bases(void *begin, struct object *ob, void *tbase, void *dbase) argument
149 __register_frame_info_table(void *begin, struct object *ob) argument
157 struct object *ob = malloc (sizeof (struct object)); local
177 struct object *ob = 0; local
240 base_from_object(unsigned char encoding, struct object *ob) argument
337 fde_single_encoding_compare(struct object *ob, const fde *x, const fde *y) argument
353 fde_mixed_encoding_compare(struct object *ob, const fde *x, const fde *y) argument
432 fde_split(struct object *ob, fde_compare_t fde_compare, struct fde_vector *linear, struct fde_vector *erratic) argument
478 frame_downheap(struct object *ob, fde_compare_t fde_compare, const fde **a, int lo, int hi) argument
504 frame_heapsort(struct object *ob, fde_compare_t fde_compare, struct fde_vector *erratic) argument
536 fde_merge(struct object *ob, fde_compare_t fde_compare, struct fde_vector *v1, struct fde_vector *v2) argument
563 end_fde_sort(struct object *ob, struct fde_accumulator *accu, size_t count) argument
598 classify_object_over_fdes(struct object *ob, const fde *this_fde) argument
653 add_fdes(struct object *ob, struct fde_accumulator *accu, const fde *this_fde) argument
716 init_object(struct object* ob) argument
770 linear_search_fdes(struct object *ob, const fde *this_fde, void *pc) argument
839 binary_search_unencoded_fdes(struct object *ob, void *pc) argument
866 binary_search_single_encoding_fdes(struct object *ob, void *pc) argument
896 binary_search_mixed_encoding_fdes(struct object *ob, void *pc) argument
927 search_object(struct object* ob, void *pc) argument
973 struct object *ob; local
[all...]
H A Dunwind-dw2-fde-darwin.c181 struct object *ob = NULL;
185 ob = calloc (1, sizeof (struct object));
186 dont_alloc |= ob == NULL;
188 ob = &panicob;
190 ob->pc_begin = (void *)-1;
191 ob->tbase = 0;
192 ob->dbase = 0;
193 ob->u.single = (struct dwarf_fde *)real_fde;
194 ob->s.i = 0;
195 ob
180 struct object *ob = NULL; local
[all...]
H A Dunwind-dw2-fde-glibc.c140 struct object ob; local
383 ob.pc_begin = NULL;
384 ob.tbase = data->tbase;
385 ob.dbase = data->dbase;
386 ob.u.single = (fde *) eh_frame;
387 ob.s.i = 0;
388 ob.s.b.mixed_encoding = 1; /* Need to assume worst case. */
389 data->ret = linear_search_fdes (&ob, (fde *) eh_frame, (void *) data->pc);
/freebsd-11-stable/lib/libc/tests/stdlib/
H A Dtest-sort.h39 const int *oa, *ob; local
42 ob = b;
43 /* Don't use "return *oa - *ob" since it's easy to cause overflow! */
44 if (*oa > *ob)
46 if (*oa < *ob)
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwindLevel1-gcc-ext.c310 _LIBUNWIND_EXPORT void __register_frame_info_bases(const void *fde, void *ob, argument
313 (void)ob;
317 fde, ob, tb, db);
321 _LIBUNWIND_EXPORT void __register_frame_info(const void *fde, void *ob) { argument
323 (void)ob;
324 _LIBUNWIND_TRACE_API("__register_frame_info(%p, %p)", fde, ob);
329 void *ob, void *tb,
332 (void)ob;
336 "(%p,%p, %p, %p)", fde, ob, tb, db);
340 _LIBUNWIND_EXPORT void __register_frame_info_table(const void *fde, void *ob) { argument
328 __register_frame_info_table_bases(const void *fde, void *ob, void *tb, void *db) argument
[all...]
H A DUnwind_AppleExtras.cpp156 for (libgcc_object *ob = head->unseen_objects; ob != NULL; ob = ob->next) {
161 (uintptr_t)ob->fde, &fdeInfo, &cieInfo);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSpillPlacement.cpp278 unsigned ob = bundles->getBundle(I->Number, true); local
279 activate(ob);
280 nodes[ob].addBias(Freq, I->Exit);
293 unsigned ob = bundles->getBundle(*I, true); local
295 activate(ob);
297 nodes[ob].addBias(Freq, PrefSpill);
306 unsigned ob = bundles->getBundle(Number, true); local
309 if (ib == ob)
312 activate(ob);
314 nodes[ib].addLink(ob, Fre
[all...]
/freebsd-11-stable/contrib/less/
H A Doutput.c83 static char *ob = obuf; variable
91 WIN32textout(obuf, ob - obuf);
131 (p_next = memchr(p_next, ESC, ob - p_next)) != NULL; )
186 ob = &obuf[slop];
342 WIN32textout(anchor, ob - anchor);
344 ob = obuf;
369 n = (int) (ob - obuf);
372 ob = obuf;
385 ob = obuf + n;
386 *ob
[all...]
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dtext.hpp121 to_string(const T& ob) argument
124 ss << ob; local
/freebsd-11-stable/contrib/binutils/gas/
H A Dfrags.c46 frag_alloc_check (const struct obstack *ob)
48 if (ob->chunk_size == 0)
66 frag_alloc (struct obstack *ob)
71 (void) obstack_alloc (ob, 0);
72 oalign = obstack_alignment_mask (ob);
73 obstack_alignment_mask (ob) = 0;
74 ptr = (fragS *) obstack_alloc (ob, SIZEOF_STRUCT_FRAG);
75 obstack_alignment_mask (ob) = oalign;
44 frag_alloc_check(const struct obstack *ob) argument
64 frag_alloc(struct obstack *ob) argument
/freebsd-11-stable/share/examples/ses/srcs/
H A Dgetencstat.c53 encioc_elm_status_t ob; local
145 ob.elm_idx = objp[i].elm_idx;
146 if (ioctl(fd, ENCIOC_GETELMSTAT, (caddr_t) &ob) < 0) {
179 fprintf(stdout, "Element 0x%x: %s", ob.elm_idx,
182 stat2ascii(objp[i].elm_type, ob.cstat));
/freebsd-11-stable/contrib/mdocml/
H A Dpreconv.c29 preconv_encode(const struct buf *ib, size_t *ii, struct buf *ob, size_t *oi, argument
92 *oi += snprintf(ob->buf + *oi, 11, "\\[u%.4X]", accum);
101 *oi += snprintf(ob->buf + *oi, 11,
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/
H A Dar9285_reset.c250 uint8_t ob[5], db1[5], db2[5]; local
265 ob[0] = pModal->ob_0;
266 ob[1] = pModal->ob_1;
267 ob[2] = pModal->ob_2;
268 ob[3] = pModal->ob_3;
269 ob[4] = pModal->ob_4;
283 ob[0] = pModal->ob_0;
284 ob[1] = ob[2] = ob[
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/unicode/
H A Du8_textprep.c1919 uchar_t *ob; local
1961 ob = (uchar_t *)outarray;
1963 obtail = ob + *outlen;
1998 if (ob >= obtail) {
2005 *ob = U8_ASCII_TOUPPER(*ib);
2007 *ob = U8_ASCII_TOLOWER(*ib);
2009 *ob = *ib;
2011 ob++;
2019 if ((obtail - ob) < (ibtail - ib)) {
2032 *ob
[all...]
/freebsd-11-stable/contrib/llvm-project/libunwind/include/
H A Dunwind.h368 extern void __register_frame_info_bases(const void *fde, void *ob, void *tb,
370 extern void __register_frame_info(const void *fde, void *ob)
372 extern void __register_frame_info_table_bases(const void *fde, void *ob,
375 extern void __register_frame_info_table(const void *fde, void *ob)
/freebsd-11-stable/crypto/openssl/crypto/objects/
H A Dobj_dat.c315 ASN1_OBJECT ob; local
327 ad.obj = &ob;
328 ob.nid = n;
342 ASN1_OBJECT ob; local
354 ad.obj = &ob;
355 ob.nid = n;
369 ASN1_OBJECT ob; local
381 ad.obj = &ob;
382 ob.nid = n;
/freebsd-11-stable/sys/kern/
H A Dtty_ttydisc.c454 char ob[TTY_STACKBUF]; local
476 obstart = ob;
477 nlen = MIN(uio->uio_resid, sizeof ob);
479 error = uiomove(ob, nlen, uio);
643 char ob[4] = "^?\b\b"; local
647 ob[1] = c + 'A' - 1;
650 return ttyoutq_write_nofrag(&tp->t_outq, ob, 4);
653 return ttyoutq_write_nofrag(&tp->t_outq, ob, 2);
840 char ob[3] = { 0xff, 0x00 }; local
1008 ob[
[all...]
H A Dtty_outq.c255 char ob[TTYOUTQ_DATASIZE - 1]; local
260 memcpy(ob, tob->tob_data + cbegin, clen);
266 error = uiomove(ob, clen, uio);
/freebsd-11-stable/contrib/gcc/cp/
H A Derror.c1436 tree ob = TREE_VALUE (args); local
1437 if (TREE_CODE (ob) == ADDR_EXPR)
1439 dump_expr (TREE_OPERAND (ob, 0), flags | TFF_EXPR_IN_PARENS);
1442 else if (TREE_CODE (ob) != PARM_DECL
1443 || strcmp (IDENTIFIER_POINTER (DECL_NAME (ob)), "this"))
1445 dump_expr (ob, flags | TFF_EXPR_IN_PARENS);
1545 tree ob = TREE_OPERAND (t, 0); local
1546 if (TREE_CODE (ob) == INDIRECT_REF)
1548 ob = TREE_OPERAND (ob,
1739 tree ob = TREE_OPERAND (t, 0); local
[all...]

Completed in 234 milliseconds

12