HomeSort by: relevance | last modified time | path
    Searched defs:obj1 (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/docs/analyzer/checkers/
callandmessage_example.c 37 MyClass *obj1; variable
38 long double ld1 = [obj1 longDoubleM];
49 MyClass *obj1; variable
50 id i = obj1.x; // warn: uninitialized object pointer
64 MyClass *obj1; local
65 id i = obj1[0]; // warn: uninitialized object pointer
  /src/external/gpl3/gdb/dist/gdb/python/
py-record.c 417 const recpy_element_object * const obj1 = (recpy_element_object *) self; local
429 if (obj1->thread == obj2->thread
430 && obj1->method == obj2->method
431 && obj1->number == obj2->number)
437 if (obj1->thread != obj2->thread
438 || obj1->method != obj2->method
439 || obj1->number != obj2->number)
py-record-btrace.c 621 const btpy_list_object * const obj1 = (btpy_list_object *) self; local
633 if (obj1->thread == obj2->thread
634 && obj1->element_type == obj2->element_type
635 && obj1->first == obj2->first
636 && obj1->last == obj2->last
637 && obj1->step == obj2->step)
643 if (obj1->thread != obj2->thread
644 || obj1->element_type != obj2->element_type
645 || obj1->first != obj2->first
646 || obj1->last != obj2->las
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-record.c 398 const recpy_element_object * const obj1 = (recpy_element_object *) self; local
410 if (obj1->thread == obj2->thread
411 && obj1->method == obj2->method
412 && obj1->number == obj2->number)
418 if (obj1->thread != obj2->thread
419 || obj1->method != obj2->method
420 || obj1->number != obj2->number)
py-record-btrace.c 563 const btpy_list_object * const obj1 = (btpy_list_object *) self; local
575 if (obj1->thread == obj2->thread
576 && obj1->element_type == obj2->element_type
577 && obj1->first == obj2->first
578 && obj1->last == obj2->last
579 && obj1->step == obj2->step)
585 if (obj1->thread != obj2->thread
586 || obj1->element_type != obj2->element_type
587 || obj1->first != obj2->first
588 || obj1->last != obj2->las
    [all...]
  /src/sys/dev/sysmon/
sysmon_envsys.c 1828 prop_object_t obj, obj1, obj2, tobj = NULL; local
1847 obj1 = prop_dictionary_get(obj, "refresh-timeout");
1848 if (obj1 && prop_object_type(obj1) == PROP_TYPE_NUMBER) {
1851 prop_number_unsigned_value(obj1);
1890 obj1 = prop_dictionary_get(dict, "index");
1895 if (!prop_string_equals(obj1, obj))
  /src/external/gpl3/gcc/dist/gcc/
ira-conflicts.cc 58 /* Record a conflict between objects OBJ1 and OBJ2. If necessary,
62 record_object_conflict (ira_object_t obj1, ira_object_t obj2)
64 ira_allocno_t a1 = OBJECT_ALLOCNO (obj1);
66 int w1 = OBJECT_SUBWORD (obj1);
76 obj1 = ALLOCNO_OBJECT (a1, 0);
79 id1 = OBJECT_CONFLICT_ID (obj1);
82 SET_MINMAX_SET_BIT (conflicts[id1], id2, OBJECT_MIN (obj1),
83 OBJECT_MAX (obj1));
205 ira_object_t obj1 = ALLOCNO_OBJECT (a1, 0);
208 return OBJECTS_CONFLICT_P (obj1, obj2)
203 ira_object_t obj1 = ALLOCNO_OBJECT (a1, 0); local
    [all...]
ira-build.cc 702 /* Add OBJ2 to the conflicts of OBJ1. */
704 add_to_conflicts (ira_object_t obj1, ira_object_t obj2)
709 if (OBJECT_CONFLICT_VEC_P (obj1))
711 ira_object_t *vec = OBJECT_CONFLICT_VEC (obj1);
712 int curr_num = OBJECT_NUM_CONFLICTS (obj1);
714 if (OBJECT_CONFLICT_ARRAY_SIZE (obj1) < num * sizeof (ira_object_t))
722 OBJECT_CONFLICT_ARRAY (obj1) = vec;
723 OBJECT_CONFLICT_ARRAY_SIZE (obj1) = size;
727 OBJECT_NUM_CONFLICTS (obj1)++;
732 IRA_INT_TYPE *vec = OBJECT_CONFLICT_BITVEC (obj1);
2839 ira_object_t obj1 = *(const ira_object_t *) v1p; local
    [all...]
tree-ssa-alias.cc 430 tree obj1 = NULL_TREE; local
440 obj1 = tem;
461 std::swap (obj1, obj2);
464 if (obj1 && obj2)
466 else if (obj1 && TREE_CODE (ptr2) == SSA_NAME)
471 may be in fact obj1. */
476 if (VAR_P (obj1)
477 && (TREE_STATIC (obj1) || DECL_EXTERNAL (obj1)))
479 varpool_node *node = varpool_node::get (obj1);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
ira-conflicts.cc 58 /* Record a conflict between objects OBJ1 and OBJ2. If necessary,
62 record_object_conflict (ira_object_t obj1, ira_object_t obj2)
64 ira_allocno_t a1 = OBJECT_ALLOCNO (obj1);
66 int w1 = OBJECT_SUBWORD (obj1);
76 obj1 = ALLOCNO_OBJECT (a1, 0);
79 id1 = OBJECT_CONFLICT_ID (obj1);
82 SET_MINMAX_SET_BIT (conflicts[id1], id2, OBJECT_MIN (obj1),
83 OBJECT_MAX (obj1));
203 ira_object_t obj1 = ALLOCNO_OBJECT (a1, 0);
206 return OBJECTS_CONFLICT_P (obj1, obj2)
201 ira_object_t obj1 = ALLOCNO_OBJECT (a1, 0); local
    [all...]
ira-build.cc 701 /* Add OBJ2 to the conflicts of OBJ1. */
703 add_to_conflicts (ira_object_t obj1, ira_object_t obj2)
708 if (OBJECT_CONFLICT_VEC_P (obj1))
710 ira_object_t *vec = OBJECT_CONFLICT_VEC (obj1);
711 int curr_num = OBJECT_NUM_CONFLICTS (obj1);
713 if (OBJECT_CONFLICT_ARRAY_SIZE (obj1) < num * sizeof (ira_object_t))
721 OBJECT_CONFLICT_ARRAY (obj1) = vec;
722 OBJECT_CONFLICT_ARRAY_SIZE (obj1) = size;
726 OBJECT_NUM_CONFLICTS (obj1)++;
731 IRA_INT_TYPE *vec = OBJECT_CONFLICT_BITVEC (obj1);
2831 ira_object_t obj1 = *(const ira_object_t *) v1p; local
    [all...]
tree-ssa-alias.cc 421 tree obj1 = NULL_TREE; local
431 obj1 = tem;
452 std::swap (obj1, obj2);
455 if (obj1 && obj2)
457 else if (obj1 && TREE_CODE (ptr2) == SSA_NAME)
462 may be in fact obj1. */
467 if (VAR_P (obj1)
468 && (TREE_STATIC (obj1) || DECL_EXTERNAL (obj1)))
470 varpool_node *node = varpool_node::get (obj1);
    [all...]
  /src/usr.sbin/envstat/
envstat.c 627 prop_object_t obj, obj1, obj2; local
672 obj1 = prop_dictionary_get(obj, "type");
673 if (obj1) {
676 prop_string_value(obj1),
684 obj1 = prop_dictionary_get(obj, "index");
685 if (obj1) {
688 prop_string_value(obj1),
704 obj1 = prop_dictionary_get(obj, "drive-state");
705 if (obj1) {
707 prop_string_value(obj1),
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/
libgcov-util.c 1069 b0: obj1's all counts are 0;
1070 b1: obj1's all counts are cold (but no 0);
1071 b2: obj1 is hot;
1072 b3: no obj1 to match obj2;
1076 b7: no obj2 to match obj1;
1079 const struct gcov_info *obj1; member in struct:overlap_t
1156 if (!e->obj1)
1164 if (gcov_info_count_all_zero (e->obj1))
1170 if (gcov_info_count_all_cold (e->obj1, overlap_sum_1
1262 all_infos[i].obj1 = gi_ptr
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/
libgcov-util.c 1157 b0: obj1's all counts are 0;
1158 b1: obj1's all counts are cold (but no 0);
1159 b2: obj1 is hot;
1160 b3: no obj1 to match obj2;
1164 b7: no obj2 to match obj1;
1167 const struct gcov_info *obj1; member in struct:overlap_t
1244 if (!e->obj1)
1252 if (gcov_info_count_all_zero (e->obj1))
1258 if (gcov_info_count_all_cold (e->obj1, overlap_sum_1
1350 all_infos[i].obj1 = gi_ptr
    [all...]
  /src/crypto/external/bsd/netpgp/dist/bindings/python/
netpgppython_wrap.c 2833 PyObject * obj1 = 0 ; variable
2835 if (!PyArg_ParseTuple(args,(char *)"OO:netpgp_t_c_set",&obj0,&obj1)) SWIG_fail;
2841 ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2);
2886 PyObject * obj1 = 0 ; variable
2888 if (!PyArg_ParseTuple(args,(char *)"OO:netpgp_t_size_set",&obj0,&obj1)) SWIG_fail;
2894 ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2);
2939 PyObject * obj1 = 0 ; variable
2941 if (!PyArg_ParseTuple(args,(char *)"OO:netpgp_t_name_set",&obj0,&obj1)) SWIG_fail;
2947 res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_char, 0 | 0 );
2992 PyObject * obj1 = 0 variable
3044 PyObject * obj1 = 0 ; variable
3095 PyObject * obj1 = 0 ; variable
3146 PyObject * obj1 = 0 ; variable
3197 PyObject * obj1 = 0 ; variable
3419 PyObject * obj1 = 0 ; variable
3471 PyObject * obj1 = 0 ; variable
3513 PyObject * obj1 = 0 ; variable
3550 PyObject * obj1 = 0 ; variable
3590 PyObject * obj1 = 0 ; variable
3631 PyObject * obj1 = 0 ; variable
3678 PyObject * obj1 = 0 ; variable
3710 PyObject * obj1 = 0 ; variable
3748 PyObject * obj1 = 0 ; variable
3790 PyObject * obj1 = 0 ; variable
3824 PyObject * obj1 = 0 ; variable
3861 PyObject * obj1 = 0 ; variable
3912 PyObject * obj1 = 0 ; variable
3975 PyObject * obj1 = 0 ; variable
4040 PyObject * obj1 = 0 ; variable
4115 PyObject * obj1 = 0 ; variable
4183 PyObject * obj1 = 0 ; variable
4266 PyObject * obj1 = 0 ; variable
4335 PyObject * obj1 = 0 ; variable
4411 PyObject * obj1 = 0 ; variable
4477 PyObject * obj1 = 0 ; variable
4532 PyObject * obj1 = 0 ; variable
    [all...]

Completed in 48 milliseconds