/linux-2.4.37.9/arch/parisc/math-emu/ |
D | float.h | 61 #define Sall(object) (object) argument 62 #define Ssign(object) Bitfield_extract( 0, 1,object) argument 63 #define Ssignedsign(object) Bitfield_signed_extract( 0, 1,object) argument 64 #define Sexponent(object) Bitfield_extract( 1, 8,object) argument 65 #define Smantissa(object) Bitfield_mask( 9, 23,object) argument 66 #define Ssignaling(object) Bitfield_extract( 9, 1,object) argument 67 #define Ssignalingnan(object) Bitfield_extract( 1, 9,object) argument 68 #define Shigh2mantissa(object) Bitfield_extract( 9, 2,object) argument 69 #define Sexponentmantissa(object) Bitfield_mask( 1, 31,object) argument 70 #define Ssignexponent(object) Bitfield_extract( 0, 9,object) argument [all …]
|
D | fpbits.h | 53 #define Bitfield_extract(start, length, object) \ argument 54 ((object) >> (HOSTWDSZ - (start) - (length)) & \ 57 #define Bitfield_signed_extract(start, length, object) \ argument 58 ((int)((object) << start) >> (HOSTWDSZ - (length))) 60 #define Bitfield_mask(start, len, object) \ argument 61 ((object) & (((unsigned)-1 >> (HOSTWDSZ-len)) << (HOSTWDSZ-start-len))) 63 #define Bitfield_deposit(value,start,len,object) object = \ argument 64 ((object) & ~(((unsigned)-1 >> (HOSTWDSZ-len)) << (HOSTWDSZ-start-len))) | \
|
D | cnv_float.h | 33 #define Dintp1(object) (object) argument 34 #define Dintp2(object) (object) argument 36 #define Duintp1(object) (object) argument 37 #define Duintp2(object) (object) argument 39 #define Qintp0(object) (object) argument 40 #define Qintp1(object) (object) argument 41 #define Qintp2(object) (object) argument 42 #define Qintp3(object) (object) argument
|
D | sgl_float.h | 32 #define Sgl_sign(object) Ssign(object) argument 33 #define Sgl_exponent(object) Sexponent(object) argument 34 #define Sgl_signexponent(object) Ssignexponent(object) argument 35 #define Sgl_mantissa(object) Smantissa(object) argument 36 #define Sgl_exponentmantissa(object) Sexponentmantissa(object) argument 37 #define Sgl_all(object) Sall(object) argument
|
D | dbl_float.h | 31 #define Dbl_sign(object) Dsign(object) argument 32 #define Dbl_exponent(object) Dexponent(object) argument 33 #define Dbl_signexponent(object) Dsignexponent(object) argument 34 #define Dbl_mantissap1(object) Dmantissap1(object) argument 35 #define Dbl_mantissap2(object) Dmantissap2(object) argument 36 #define Dbl_exponentmantissap1(object) Dexponentmantissap1(object) argument 37 #define Dbl_allp1(object) Dallp1(object) argument 38 #define Dbl_allp2(object) Dallp2(object) argument
|
/linux-2.4.37.9/drivers/acpi/utilities/ |
D | utdelete.c | 69 union acpi_operand_object *object) in acpi_ut_delete_internal_obj() argument 77 ACPI_FUNCTION_TRACE_PTR ("ut_delete_internal_obj", object); in acpi_ut_delete_internal_obj() 80 if (!object) { in acpi_ut_delete_internal_obj() 88 switch (ACPI_GET_OBJECT_TYPE (object)) { in acpi_ut_delete_internal_obj() 92 object, object->string.pointer)); in acpi_ut_delete_internal_obj() 96 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) { in acpi_ut_delete_internal_obj() 99 obj_pointer = object->string.pointer; in acpi_ut_delete_internal_obj() 107 object, object->buffer.pointer)); in acpi_ut_delete_internal_obj() 111 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) { in acpi_ut_delete_internal_obj() 114 obj_pointer = object->buffer.pointer; in acpi_ut_delete_internal_obj() [all …]
|
D | utobject.c | 82 union acpi_operand_object *object; in acpi_ut_create_internal_object_dbg() local 91 object = acpi_ut_allocate_object_desc_dbg (module_name, line_number, component_id); in acpi_ut_create_internal_object_dbg() 92 if (!object) { in acpi_ut_create_internal_object_dbg() 104 acpi_ut_delete_object_desc (object); in acpi_ut_create_internal_object_dbg() 113 object->common.next_object = second_object; in acpi_ut_create_internal_object_dbg() 123 object->common.type = (u8) type; in acpi_ut_create_internal_object_dbg() 127 object->common.reference_count = 1; in acpi_ut_create_internal_object_dbg() 131 return_PTR (object); in acpi_ut_create_internal_object_dbg() 204 void *object) in acpi_ut_valid_internal_object() argument 212 if (!object) { in acpi_ut_valid_internal_object() [all …]
|
D | utalloc.c | 68 void *object) in acpi_ut_release_to_cache() argument 80 ACPI_MEM_FREE (object); in acpi_ut_release_to_cache() 93 ACPI_MEMSET (object, 0xCA, cache_info->object_size); in acpi_ut_release_to_cache() 94 ACPI_SET_DESCRIPTOR_TYPE (object, ACPI_DESC_TYPE_CACHED); in acpi_ut_release_to_cache() 98 …* (ACPI_CAST_INDIRECT_PTR (char, &(((char *) object)[cache_info->link_offset]))) = cache_info->lis… in acpi_ut_release_to_cache() 99 cache_info->list_head = object; in acpi_ut_release_to_cache() 126 void *object; in acpi_ut_acquire_from_cache() local 144 object = cache_info->list_head; in acpi_ut_acquire_from_cache() 145 …cache_info->list_head = *(ACPI_CAST_INDIRECT_PTR (char, &(((char *) object)[cache_info->link_offse… in acpi_ut_acquire_from_cache() 152 object, acpi_gbl_memory_lists[list_id].list_name)); in acpi_ut_acquire_from_cache() [all …]
|
D | utglobal.c | 559 void *object) in acpi_ut_get_node_name() argument 561 struct acpi_namespace_node *node = (struct acpi_namespace_node *) object; in acpi_ut_get_node_name() 564 if (!object) in acpi_ut_get_node_name() 569 if (object == ACPI_ROOT_OBJECT) in acpi_ut_get_node_name() 623 void *object) in acpi_ut_get_descriptor_name() argument 626 if (!object) in acpi_ut_get_descriptor_name() 631 if (ACPI_GET_DESCRIPTOR_TYPE (object) > ACPI_DESC_TYPE_MAX) in acpi_ut_get_descriptor_name() 636 return ((char *) acpi_gbl_desc_type_names[ACPI_GET_DESCRIPTOR_TYPE (object)]); in acpi_ut_get_descriptor_name() 888 acpi_gbl_root_node_struct.object = NULL; in acpi_ut_init_globals()
|
D | utmisc.c | 855 union acpi_operand_object *object, in acpi_ut_create_update_state_and_push() argument 867 if (!object) { in acpi_ut_create_update_state_and_push() 871 state = acpi_ut_create_update_state (object, action); in acpi_ut_create_update_state_and_push() 1074 union acpi_operand_object *object, in acpi_ut_create_update_state() argument 1080 ACPI_FUNCTION_TRACE_PTR ("ut_create_update_state", object); in acpi_ut_create_update_state() 1093 state->update.object = object; in acpi_ut_create_update_state()
|
/linux-2.4.37.9/drivers/acpi/namespace/ |
D | nsobject.c | 76 union acpi_operand_object *object, in acpi_ns_attach_object() argument 97 if (!object && (ACPI_TYPE_ANY != type)) { in acpi_ns_attach_object() 114 if (node->object == object) { in acpi_ns_attach_object() 116 object, node)); in acpi_ns_attach_object() 123 if (!object) { in acpi_ns_attach_object() 132 else if ((ACPI_GET_DESCRIPTOR_TYPE (object) == ACPI_DESC_TYPE_NAMED) && in acpi_ns_attach_object() 133 ((struct acpi_namespace_node *) object)->object) { in acpi_ns_attach_object() 138 obj_desc = ((struct acpi_namespace_node *) object)->object; in acpi_ns_attach_object() 139 object_type = ((struct acpi_namespace_node *) object)->type; in acpi_ns_attach_object() 147 obj_desc = (union acpi_operand_object *) object; in acpi_ns_attach_object() [all …]
|
/linux-2.4.37.9/drivers/acpi/dispatcher/ |
D | dsmthdat.c | 140 if (walk_state->local_variables[index].object) { in acpi_ds_method_data_delete_all() 142 index, walk_state->local_variables[index].object)); in acpi_ds_method_data_delete_all() 153 if (walk_state->arguments[index].object) { in acpi_ds_method_data_delete_all() 155 index, walk_state->arguments[index].object)); in acpi_ds_method_data_delete_all() 304 union acpi_operand_object *object, in acpi_ds_method_data_set_value() argument 315 "obj %p op %X, ref count = %d [%s]\n", object, in acpi_ds_method_data_set_value() 316 opcode, object->common.reference_count, in acpi_ds_method_data_set_value() 317 acpi_ut_get_type_name (object->common.type))); in acpi_ds_method_data_set_value() 332 acpi_ut_add_reference (object); in acpi_ds_method_data_set_value() 336 node->object = object; in acpi_ds_method_data_set_value() [all …]
|
D | dswstate.c | 70 void *object, in acpi_ds_result_insert() argument 90 index, object, walk_state, state->results.num_results)); in acpi_ds_result_insert() 94 if (!object) { in acpi_ds_result_insert() 97 index, object, walk_state, state->results.num_results)); in acpi_ds_result_insert() 101 state->results.obj_desc [index] = object; in acpi_ds_result_insert() 106 object, object ? acpi_ut_get_object_type_name ((union acpi_operand_object *) object) : "NULL", in acpi_ds_result_insert() 130 union acpi_operand_object **object, in acpi_ds_result_remove() argument 166 *object = state->results.obj_desc [index]; in acpi_ds_result_remove() 171 *object, (*object) ? acpi_ut_get_object_type_name (*object) : "NULL", in acpi_ds_result_remove() 194 union acpi_operand_object **object, in acpi_ds_result_pop() argument [all …]
|
/linux-2.4.37.9/include/acpi/ |
D | acutils.h | 127 void *object); 131 void *object); 332 union acpi_operand_object *object, 442 union acpi_operand_object *object); 446 union acpi_operand_object *object); 450 union acpi_operand_object *object); 570 union acpi_operand_object *object); 574 void *object); 587 union acpi_operand_object *object); 591 union acpi_operand_object *object); [all …]
|
D | acdispat.h | 57 void *object, 72 union acpi_operand_object **object, 291 union acpi_operand_object *object, 488 void *object, 494 union acpi_operand_object **object, 500 union acpi_operand_object **object, 505 union acpi_operand_object *object, 510 union acpi_operand_object **object,
|
D | acpixf.h | 216 acpi_handle object, 223 acpi_handle object, 243 acpi_handle object, 248 acpi_handle object,
|
/linux-2.4.37.9/arch/arm/mm/ |
D | proc-arm6,7.S | 399 .type arm6_processor_functions, #object 438 .type arm7_processor_functions, #object 473 .type cpu_arm6_info, #object 479 .type cpu_arm610_info, #object 485 .type cpu_arm7_info, #object 491 .type cpu_arm710_info, #object 497 .type cpu_arch_name, #object 501 .type cpu_elf_name, #object 508 .type __arm6_proc_info, #object 521 .type __arm610_proc_info, #object [all …]
|
D | proc-arm925.S | 643 .type arm925_processor_functions, #object 678 .type cpu_arm925_info, #object 684 .type cpu_arm915_info, #object 690 .type cpu_arch_name, #object 695 .type cpu_elf_name, #object 708 .type __arm925_proc_info,#object 721 .type __arm915_proc_info,#object
|
D | proc-sa110.S | 612 .type sa110_processor_functions, #object 647 .type cpu_sa110_info, #object 657 .type sa1100_processor_functions, #object 702 .type cpu_arch_name, #object 707 .type cpu_elf_name, #object 715 .type __sa110_proc_info,#object 728 .type __sa1100_proc_info,#object 741 .type __sa1110_proc_info,#object
|
/linux-2.4.37.9/drivers/acpi/executer/ |
D | exdump.c | 128 ACPI_DUMP_PATHNAME (obj_desc->reference.object, "Reference: Name: ", in acpi_ex_dump_operand() 130 ACPI_DUMP_ENTRY (obj_desc->reference.object, ACPI_LV_INFO); in acpi_ex_dump_operand() 137 obj_desc->reference.object); in acpi_ex_dump_operand() 144 obj_desc->reference.object); in acpi_ex_dump_operand() 566 acpi_os_printf ("\nAttached Object (%p):\n", ((struct acpi_namespace_node *) obj_desc)->object); in acpi_ex_dump_object_descriptor() 567 acpi_ex_dump_object_descriptor (((struct acpi_namespace_node *) obj_desc)->object, flags); in acpi_ex_dump_object_descriptor() 753 acpi_ex_out_pointer ("obj_desc", obj_desc->reference.object); in acpi_ex_dump_object_descriptor()
|
D | exresop.c | 74 void *object) in acpi_ex_check_object_type() argument 92 (((union acpi_operand_object *) object)->common.flags & AOPOBJ_AML_CONSTANT)) { in acpi_ex_check_object_type() 101 acpi_ut_get_type_name (this_type), object)); in acpi_ex_check_object_type() 307 temp_node = obj_desc->reference.object; in acpi_ex_resolve_operands()
|
D | exstore.c | 155 status = acpi_ex_store_object_to_node (source_desc, ref_desc->reference.object, in acpi_ex_store() 320 …for (i = 1; i < ((union acpi_operand_object *) index_desc->reference.object)->common.reference_cou… in acpi_ex_store_object_to_index() 341 obj_desc = index_desc->reference.object; in acpi_ex_store_object_to_index()
|
D | excreate.c | 95 target_node = ACPI_CAST_PTR (struct acpi_namespace_node, target_node->object); in acpi_ex_create_alias() 118 alias_node->object = ACPI_CAST_PTR (union acpi_operand_object, target_node); in acpi_ex_create_alias() 129 alias_node->object = ACPI_CAST_PTR (union acpi_operand_object, target_node); in acpi_ex_create_alias()
|
/linux-2.4.37.9/drivers/hil/ |
D | hil_mlc.c | 538 mlc->imatch = node->object.packet; in hilse_setup_input() 542 mlc->imatch = node->object.packet; in hilse_setup_input() 546 mlc->imatch = node->object.packet; in hilse_setup_input() 592 if (node->object.func == NULL) break; in hilse_donode() 593 rc = node->object.func(mlc, node->arg); in hilse_donode() 619 pack = node->object.packet; in hilse_donode() 624 pack = node->object.packet; in hilse_donode() 629 pack = node->object.packet; in hilse_donode()
|
/linux-2.4.37.9/arch/arm/boot/bootp/ |
D | init.S | 22 .type initdata, #object 101 .type initrd_start,#object
|