Searched refs:obj (Results 151 - 175 of 918) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dobstack.c302 int _obstack_allocated_p (struct obstack *h, POINTER obj);
305 _obstack_allocated_p (struct obstack *h, POINTER obj)
314 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
332 _obstack_free (struct obstack *h, POINTER obj)
341 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
352 h->object_base = h->next_free = (char *) (obj);
356 else if (obj != 0)
357 /* obj i
304 _obstack_allocated_p(struct obstack *h, POINTER obj) argument
330 _obstack_free(struct obstack *h, POINTER obj) argument
362 obstack_free(struct obstack *h, POINTER obj) argument
[all...]
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dobstack.c302 int _obstack_allocated_p (struct obstack *h, POINTER obj);
305 _obstack_allocated_p (struct obstack *h, POINTER obj)
314 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
332 _obstack_free (struct obstack *h, POINTER obj)
341 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
352 h->object_base = h->next_free = (char *) (obj);
356 else if (obj != 0)
357 /* obj i
304 _obstack_allocated_p(struct obstack *h, POINTER obj) argument
330 _obstack_free(struct obstack *h, POINTER obj) argument
362 obstack_free(struct obstack *h, POINTER obj) argument
[all...]
/freebsd-11-stable/sys/dev/ixl/
H A Di40e_lan_hmc.c111 struct i40e_hmc_obj_info *obj, *full_obj; local
135 obj = &hw->hmc.hmc_obj[I40E_HMC_LAN_TX];
136 obj->max_cnt = rd32(hw, I40E_GLHMC_LANQMAX);
137 obj->cnt = txq_num;
138 obj->base = 0;
140 obj->size = BIT_ULL(size_exp);
143 if (txq_num > obj->max_cnt) {
146 txq_num, obj->max_cnt, ret_code);
151 full_obj->max_cnt += obj->max_cnt;
152 full_obj->cnt += obj
478 struct i40e_hmc_obj_info *obj; local
[all...]
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_alloc.c45 u32 obj; local
49 obj = find_next_zero_bit(bitmap->table, bitmap->max, bitmap->last);
50 if (obj >= bitmap->max) {
53 obj = find_first_zero_bit(bitmap->table, bitmap->max);
56 if (obj < bitmap->max) {
57 set_bit(obj, bitmap->table);
58 bitmap->last = (obj + 1);
61 obj |= bitmap->top;
63 obj = -1;
65 if (obj !
73 mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj, int use_rr) argument
111 u32 obj; local
151 mlx4_bitmap_masked_value(struct mlx4_bitmap *bitmap, u32 obj) argument
156 mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt, int use_rr) argument
420 __mlx4_free_from_zone(struct mlx4_zone_entry *zone, u32 obj, u32 count) argument
480 __mlx4_find_zone_by_uid_unique( struct mlx4_zone_allocator *zones, u32 obj) argument
531 mlx4_zone_free_entries(struct mlx4_zone_allocator *zones, u32 uid, u32 obj, u32 count) argument
553 mlx4_zone_free_entries_unique(struct mlx4_zone_allocator *zones, u32 obj, u32 count) argument
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddsl_deadlist.c180 uint64_t obj = za.za_first_integer; local
181 if (obj == dmu_objset_pool(os)->dp_empty_bpobj)
184 bpobj_free(os, obj, tx);
197 uint64_t obj = bpobj_alloc(dl->dl_os, SPA_OLD_MAXBLOCKSIZE, tx); local
200 VERIFY3U(0, ==, bpobj_open(&dle->dle_bpobj, dl->dl_os, obj));
202 dle->dle_mintxg, obj, tx));
209 uint64_t obj, dmu_tx_t *tx)
214 bpobj_enqueue_subobj(&dle->dle_bpobj, obj, tx);
218 VERIFY3U(0, ==, bpobj_open(&dle->dle_bpobj, dl->dl_os, obj));
220 dle->dle_mintxg, obj, t
208 dle_enqueue_subobj(dsl_deadlist_t *dl, dsl_deadlist_entry_t *dle, uint64_t obj, dmu_tx_t *tx) argument
262 uint64_t obj; local
358 uint64_t obj; local
437 dsl_deadlist_insert_bpobj(dsl_deadlist_t *dl, uint64_t obj, uint64_t birth, dmu_tx_t *tx) argument
479 dsl_deadlist_merge(dsl_deadlist_t *dl, uint64_t obj, dmu_tx_t *tx) argument
[all...]
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dipfs.c385 ipfobj_t obj; local
399 bzero((char *)&obj, sizeof(obj));
402 obj.ipfo_rev = IPFILTER_VERSION;
403 obj.ipfo_size = sizeof(*ipsp);
404 obj.ipfo_type = IPFOBJ_STATESAVE;
405 obj.ipfo_ptr = ipsp;
411 if (ioctl(fd, SIOCSTGET, &obj)) {
438 ipfobj_t obj; local
505 obj
554 ipfobj_t obj; local
701 ipfobj_t obj; local
[all...]
H A Dipnat.c98 ipfobj_t obj; local
201 bzero((char *)&obj, sizeof(obj));
202 obj.ipfo_rev = IPFILTER_VERSION;
203 obj.ipfo_type = IPFOBJ_NATSTAT;
204 obj.ipfo_size = sizeof(*nsp);
205 obj.ipfo_ptr = (void *)nsp;
206 if (ioctl(fd, SIOCGNATS, &obj) == -1) {
298 ipfobj_t obj; local
300 obj
406 ipfobj_t obj; local
530 ipfobj_t obj; local
661 ipfobj_t obj; local
[all...]
/freebsd-11-stable/contrib/binutils/gas/
H A DMakefile.in85 am__DEPENDENCIES_2 = obj-@obj_format@.o
276 OBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c
277 OBJ_FORMAT_O = obj-@obj_format@.o
278 OBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h
396 # These are like CPU_TYPES and CPU_OBJ_VALID, for the obj=multi case.
469 obj.h \
594 config/obj-aout.c \
595 config/obj-coff.c \
596 config/obj-ecoff.c \
597 config/obj
[all...]
H A DMakefile.am30 OBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c
31 OBJ_FORMAT_O = obj-@obj_format@.o
32 OBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h
150 # These are like CPU_TYPES and CPU_OBJ_VALID, for the obj=multi case.
226 obj.h \
351 config/obj-aout.c \
352 config/obj-coff.c \
353 config/obj-ecoff.c \
354 config/obj-elf.c \
355 config/obj
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dobjfiles.h596 #define ALL_OBJFILES(obj) \
597 for ((obj) = object_files; (obj) != NULL; (obj) = (obj)->next)
599 #define ALL_OBJFILES_SAFE(obj,nxt) \
600 for ((obj) = object_files; \
601 (obj) != NULL? ((nxt)=(obj)->next,1) :0; \
602 (obj)
[all...]
/freebsd-11-stable/sys/dev/drm2/i915/
H A Di915_gem_gtt.c278 struct drm_i915_gem_object *obj,
282 obj->pages,
283 obj->gtt_space->start >> PAGE_SHIFT,
284 obj->base.size >> PAGE_SHIFT,
289 struct drm_i915_gem_object *obj)
292 obj->gtt_space->start >> PAGE_SHIFT,
293 obj->base.size >> PAGE_SHIFT);
411 struct drm_i915_gem_object *obj; local
417 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list) {
418 i915_gem_clflush_object(obj);
277 i915_ppgtt_bind_object(struct i915_hw_ppgtt *ppgtt, struct drm_i915_gem_object *obj, enum i915_cache_level cache_level) argument
288 i915_ppgtt_unbind_object(struct i915_hw_ppgtt *ppgtt, struct drm_i915_gem_object *obj) argument
425 i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj) argument
446 gen6_ggtt_bind_object(struct drm_i915_gem_object *obj, enum i915_cache_level level) argument
484 i915_gem_gtt_bind_object(struct drm_i915_gem_object *obj, enum i915_cache_level cache_level) argument
502 i915_gem_gtt_unbind_object(struct drm_i915_gem_object *obj) argument
511 i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj) argument
[all...]
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_emitter_utils.c435 ucl_object_emit_single_json (const ucl_object_t *obj) argument
440 if (obj == NULL) {
447 switch (obj->type) {
455 ucl_utstring_append_int (obj->value.iv, buf);
459 ucl_utstring_append_double (obj->value.dv, buf);
465 if (obj->value.iv) {
473 ucl_utstring_append_len (obj->value.sv, obj->len, buf);
489 ucl_maybe_long_string (const ucl_object_t *obj) argument
491 if (obj
[all...]
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_allocator.c43 u32 obj; local
47 obj = find_next_zero_bit(alloc->table, alloc->max, alloc->last);
48 if (obj >= alloc->max) {
50 obj = find_first_zero_bit(alloc->table, alloc->max);
53 if (obj < alloc->max) {
54 set_bit(obj, alloc->table);
55 obj |= alloc->top;
57 obj = -1;
61 return obj;
64 void mthca_free(struct mthca_alloc *alloc, u32 obj) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h78 StructuredPythonObject(void *obj) : StructuredData::Generic(obj) { argument
128 // If T is not just PythonObject, then obj must be already be
130 template <typename T> T Take(PyObject *obj) { argument
131 assert(obj);
133 T thing(PyRefType::Owned, obj);
146 // If T is not just PythonObject, then obj must be already be
148 template <typename T> T Retain(PyObject *obj) { argument
149 assert(obj);
151 T thing(PyRefType::Borrowed, obj);
327 PyObject *obj = local
338 PyObject *obj = PyObject_CallFunction(m_py_obj, py2_const_cast(format), local
388 As(llvm::Expected<PythonObject> &&obj) argument
[all...]
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dobstack.c342 int _obstack_allocated_p (struct obstack *h, POINTER obj);
346 _obstack_allocated_p (h, obj)
348 POINTER obj;
357 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
375 _obstack_free (h, obj)
377 POINTER obj;
386 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
397 h->object_base = h->next_free = (char *) (obj);
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_page.c305 linux_shmem_read_mapping_page_gfp(vm_object_t obj, int pindex, gfp_t gfp) argument
313 VM_OBJECT_WLOCK(obj);
314 page = vm_page_grab(obj, pindex, VM_ALLOC_NORMAL | VM_ALLOC_NOBUSY |
318 if (vm_pager_has_page(obj, pindex, NULL, NULL)) {
319 rv = vm_pager_get_pages(obj, &page, 1, NULL, NULL);
325 VM_OBJECT_WUNLOCK(obj);
336 VM_OBJECT_WUNLOCK(obj);
376 linux_invalidate_mapping_pages_sub(vm_object_t obj, vm_pindex_t start, argument
381 VM_OBJECT_WLOCK(obj);
382 start_count = obj
390 linux_invalidate_mapping_pages(vm_object_t obj, pgoff_t start, pgoff_t end) argument
397 linux_shmem_truncate_range(vm_object_t obj, loff_t lstart, loff_t lend) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509_ext.c78 int X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos) argument
80 return (X509v3_get_ext_by_OBJ(x->crl->extensions, obj, lastpos));
124 int X509_get_ext_by_OBJ(X509 *x, ASN1_OBJECT *obj, int lastpos) argument
126 return (X509v3_get_ext_by_OBJ(x->cert_info->extensions, obj, lastpos));
172 int X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x, ASN1_OBJECT *obj, argument
175 return (X509v3_get_ext_by_OBJ(x->extensions, obj, lastpos));
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_pid.c80 dt_pid_objname(char *buf, size_t len, Lmid_t lmid, const char *obj) argument
84 (void) strncpy(buf, obj, len);
86 (void) snprintf(buf, len, "LM%lx`%s", lmid, obj);
88 (void) strncpy(buf, obj, len);
267 dt_pid_per_mod(void *arg, const prmap_t *pmp, const char *obj) argument
275 if (obj == NULL)
283 if ((pp->dpp_obj = strrchr(obj, '/')) == NULL)
284 pp->dpp_obj = obj;
288 if (Pxlookup_by_name(pp->dpp_pr, pp->dpp_lmid, obj, ".stret1", &sym,
294 if (Pxlookup_by_name(pp->dpp_pr, pp->dpp_lmid, obj, "
404 dt_pid_mod_filt(void *arg, const prmap_t *pmp, const char *obj) argument
443 const char *obj; local
546 char *obj; local
[all...]
/freebsd-11-stable/libexec/rtld-elf/sparc64/
H A Dreloc.c233 static int reloc_nonplt_object(Obj_Entry *obj, const Elf_Rela *rela,
295 reloc_non_plt(Obj_Entry *obj, Obj_Entry *obj_rtld, int flags, argument
311 if (obj != obj_rtld) {
312 cache = calloc(obj->dynsymcount, sizeof(SymCache));
317 relalim = (const Elf_Rela *)((caddr_t)obj->rela + obj->relasize);
318 for (rela = obj->rela; rela < relalim; rela++) {
319 if (reloc_nonplt_object(obj, rela, cache, flags, lockstate) < 0)
330 reloc_nonplt_object(Obj_Entry *obj, const Elf_Rela *rela, SymCache *cache, argument
341 where = (Elf_Addr *)(obj
488 reloc_plt(Obj_Entry *obj) argument
534 reloc_jmpslots(Obj_Entry *obj, int flags, RtldLockState *lockstate) argument
559 reloc_iresolve(Obj_Entry *obj, struct Struct_RtldLockState *lockstate) argument
567 reloc_gnu_ifunc(Obj_Entry *obj, int flags, struct Struct_RtldLockState *lockstate) argument
576 reloc_jmpslot(Elf_Addr *wherep, Elf_Addr target, const Obj_Entry *obj, const Obj_Entry *refobj, const Elf_Rel *rel) argument
818 init_pltgot(Obj_Entry *obj) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_extku.c108 ASN1_OBJECT *obj;
111 obj = sk_ASN1_OBJECT_value(eku, i);
112 i2t_ASN1_OBJECT(obj_tmp, 80, obj);
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_init.c36 void *obj; local
45 obj = dbg->dbg_iface->object;
48 assert(obj != NULL);
50 if (m->get_byte_order(obj) == DW_OBJECT_MSB) {
60 dbg->dbg_pointer_size = m->get_pointer_size(obj);
61 dbg->dbg_offset_size = m->get_length_size(obj);
63 cnt = m->get_section_count(obj);
79 if (m->get_section_info(obj, i, &sec, &ret) != DW_DLV_OK) {
88 if (m->load_section(obj, i, &dbg->dbg_section[i].ds_data, &ret)
/freebsd-11-stable/contrib/libucl/lua/
H A Dtest.lua24 local obj = parser:get_object()
25 local got = ucl.to_json(obj, true)
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_buffer.c169 void *obj = NULL; local
172 obj = &buf->data[page][idx];
181 obj = stack_obj;
185 return obj;
/freebsd-11-stable/usr.sbin/bsnmpd/tools/bsnmptools/
H A Dbsnmpget.c258 struct snmp_object *obj, char *argv)
284 if (snmp_lookup_oidall(snmptoolctx, obj, string) < 0) {
291 asn_append_oid(&(obj->val.var), &in_oid);
293 if ((str = snmp_parse_index(snmptoolctx, str + 1, obj)) == NULL)
295 } else if (obj->val.syntax > 0 && GET_PDUTYPE(snmptoolctx) ==
297 if (snmp_suboid_append(&(obj->val.var), (asn_subid_t) 0) < 0)
306 struct snmp_object *obj, char *argv)
312 if (snmp_parse_numoid(argv, &(obj->val.var)) < 0)
315 if (snmptools_parse_stroid(snmptoolctx, obj, argv) == NULL &&
316 snmp_parse_numoid(argv, &(obj
257 snmptools_parse_stroid(struct snmp_toolinfo *snmptoolctx, struct snmp_object *obj, char *argv) argument
305 snmptools_parse_oid(struct snmp_toolinfo *snmptoolctx, struct snmp_object *obj, char *argv) argument
324 snmptool_add_vbind(struct snmp_pdu *pdu, struct snmp_object *obj) argument
339 snmpget_verify_vbind(struct snmp_toolinfo *snmptoolctx, struct snmp_pdu *pdu, struct snmp_object *obj) argument
445 snmpwalk_add_default(struct snmp_toolinfo *snmptoolctx __unused, struct snmp_object *obj, char *string __unused) argument
597 struct snmp_object obj; local
913 parse_pair_stroid_val(struct snmp_toolinfo *snmptoolctx, struct snmp_object *obj, char *argv) argument
934 snmpset_parse_oid(struct snmp_toolinfo *snmptoolctx, struct snmp_object *obj, char *argv) argument
1043 snmpset_verify_vbind(struct snmp_toolinfo *snmptoolctx, struct snmp_pdu *pdu, struct snmp_object *obj) argument
1065 snmpset_add_vbind(struct snmp_pdu *pdu, struct snmp_object *obj) argument
[all...]
/freebsd-11-stable/secure/caroot/
H A DMakefile10 .include <bsd.obj.mk>

Completed in 175 milliseconds

1234567891011>>