Searched refs:object (Results 26 - 50 of 1426) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mm/
H A Dproc-arm7tdmi.S62 .type arm7tdmi_processor_functions, #object
77 .type cpu_arch_name, #object
82 .type cpu_elf_name, #object
87 .type cpu_arm7tdmi_name, #object
92 .type cpu_triscenda7_name, #object
97 .type cpu_at91_name, #object
102 .type cpu_s3c3410_name, #object
107 .type cpu_s3c44b0x_name, #object
112 .type cpu_s3c4510b, #object
117 .type cpu_s3c4530_name, #object
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DUserEvents.h64 ((CPartFile*)object)->GetFullName().GetRaw() ) \
68 ((CPartFile*)object)->GetFileName().GetRaw() ) \
72 ((CPartFile*)object)->GetFileHash().Encode() ) \
76 (wxString)(CFormat(wxT("%llu")) % ((CPartFile*)object)->GetFileSize()) ) \
80 CastSecondsToHM(((CPartFile*)object)->GetDlActiveTime()) ) \
88 *((wxString*)object) ) \
96 wxString((wxChar*)object) ) \
104 ((CPartFile*)object)->GetFullName().GetRaw() ) \
129 * Notes on the 'object' argument: this should be a pointer to
130 * an object instanc
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DBooleanBinding.java39 public void objectToEntry(Object object, TupleOutput output) { argument
41 output.writeBoolean(((Boolean) object).booleanValue());
45 protected TupleOutput getTupleOutput(Object object) { argument
75 * Returns a tuple output object of the exact size needed, to avoid
H A DByteBinding.java39 public void objectToEntry(Object object, TupleOutput output) { argument
41 output.writeByte(((Number) object).byteValue());
45 protected TupleOutput getTupleOutput(Object object) { argument
75 * Returns a tuple output object of the exact size needed, to avoid
H A DCharacterBinding.java39 public void objectToEntry(Object object, TupleOutput output) { argument
41 output.writeChar(((Character) object).charValue());
45 protected TupleOutput getTupleOutput(Object object) { argument
75 * Returns a tuple output object of the exact size needed, to avoid
H A DDoubleBinding.java44 public void objectToEntry(Object object, TupleOutput output) { argument
46 output.writeDouble(((Number) object).doubleValue());
50 protected TupleOutput getTupleOutput(Object object) { argument
80 * Returns a tuple output object of the exact size needed, to avoid
H A DFloatBinding.java44 public void objectToEntry(Object object, TupleOutput output) { argument
46 output.writeFloat(((Number) object).floatValue());
50 protected TupleOutput getTupleOutput(Object object) { argument
80 * Returns a tuple output object of the exact size needed, to avoid
H A DIntegerBinding.java39 public void objectToEntry(Object object, TupleOutput output) { argument
41 output.writeInt(((Number) object).intValue());
45 protected TupleOutput getTupleOutput(Object object) { argument
75 * Returns a tuple output object of the exact size needed, to avoid
H A DLongBinding.java39 public void objectToEntry(Object object, TupleOutput output) { argument
41 output.writeLong(((Number) object).longValue());
45 protected TupleOutput getTupleOutput(Object object) { argument
75 * Returns a tuple output object of the exact size needed, to avoid
H A DShortBinding.java39 public void objectToEntry(Object object, TupleOutput output) { argument
41 output.writeShort(((Number) object).shortValue());
45 protected TupleOutput getTupleOutput(Object object) { argument
75 * Returns a tuple output object of the exact size needed, to avoid
H A DSortedDoubleBinding.java50 public void objectToEntry(Object object, TupleOutput output) { argument
52 output.writeSortedDouble(((Number) object).doubleValue());
56 protected TupleOutput getTupleOutput(Object object) { argument
H A DSortedFloatBinding.java50 public void objectToEntry(Object object, TupleOutput output) { argument
52 output.writeSortedFloat(((Number) object).floatValue());
56 protected TupleOutput getTupleOutput(Object object) { argument
H A DBigIntegerBinding.java27 public void objectToEntry(Object object, TupleOutput output) { argument
29 output.writeBigInteger((BigInteger) object);
33 protected TupleOutput getTupleOutput(Object object) { argument
35 return sizedOutput((BigInteger) object);
63 * Returns a tuple output object of the exact size needed, to avoid
H A DStringBinding.java37 public void objectToEntry(Object object, TupleOutput output) { argument
39 output.writeString((String) object);
43 protected TupleOutput getTupleOutput(Object object) { argument
45 return sizedOutput((String) object);
73 * Returns a tuple output object of the exact size needed, to avoid
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dutobject.c3 * Module Name: utobject - ACPI object create/delete/size/cache routines
72 * Type - ACPI Type of the new object
74 * RETURN: A new internal object, null on failure
76 * DESCRIPTION: Create and initialize a new internal object.
78 * NOTE: We always allocate the worst-case object descriptor because
81 * the most memory efficient, but the efficiency of the object
93 union acpi_operand_object *object; local
99 /* Allocate the raw object descriptor */
101 object =
104 if (!object) {
334 acpi_ut_valid_internal_object(void *object) argument
383 union acpi_operand_object *object; local
418 acpi_ut_delete_object_desc(union acpi_operand_object *object) argument
[all...]
H A Ddsmthdat.c61 union acpi_operand_object *object,
74 * PARAMETERS: walk_state - Current walk state object
128 * PARAMETERS: walk_state - Current walk state object
146 if (walk_state->local_variables[index].object) {
150 object));
152 /* Detach object (if present) and remove a reference */
162 if (walk_state->arguments[index].object) {
165 walk_state->arguments[index].object));
167 /* Detach object (if present) and remove a reference */
182 * walk_state - Current walk state object
313 acpi_ds_method_data_set_value(u8 type, u32 index, union acpi_operand_object *object, struct acpi_walk_state *walk_state) argument
374 union acpi_operand_object *object; local
479 union acpi_operand_object *object; local
689 union acpi_operand_object *object; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-gobject/
H A Dga-error.h23 #include <glib-object.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-gobject/
H A Dga-error.h23 #include <glib-object.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/jpeg/
H A Djmemnobs.c41 jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject) argument
43 free(object);
61 jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject) argument
63 free(object);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cachefiles/
H A Dxattr.c26 * check the type label on an object
29 int cachefiles_check_object_type(struct cachefiles_object *object) argument
31 struct dentry *dentry = object->dentry;
38 if (!object->fscache.cookie)
41 snprintf(type, 3, "%02x", object->fscache.cookie->def->type);
43 _enter("%p{%s}", object, type);
88 kerror("Cache object %lu type xattr length incorrect",
95 kerror("Cache object %*.*s [%lu] type %s not %s",
106 int cachefiles_set_object_xattr(struct cachefiles_object *object, argument
109 struct dentry *dentry = object
135 cachefiles_update_object_xattr(struct cachefiles_object *object, struct cachefiles_xattr *auxdata) argument
165 cachefiles_check_object_xattr(struct cachefiles_object *object, struct cachefiles_xattr *auxdata) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/
H A DEntryBinding.java14 * A binding between a key or data entry and a key or data object.
38 * @param object is the source Object.
42 void objectToEntry(Object object, DatabaseEntry entry); argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/serial/
H A DTupleSerialMarshalledBinding.java20 * entity class to convert between the key/data entry and entity object.</p>
23 * stored data entry and the combined entity object. To do this, the entity's
24 * key field(s) are transient and are set by the binding after the data object
34 * Creates a tuple-serial marshalled binding object.
50 * Creates a tuple-serial marshalled binding object.
53 * the entity object.
76 public void objectToKey(Object object, TupleOutput output) { argument
80 MarshalledTupleKeyEntity entity = (MarshalledTupleKeyEntity) object;
85 public Object objectToData(Object object) { argument
90 return object;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/jpeg-7/
H A Djmemnobs.c41 jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject) argument
43 free(object);
61 jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject) argument
63 free(object);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/fscache/
H A DMakefile11 object.o \
18 fscache-$(CONFIG_FSCACHE_OBJECT_LIST) += object-list.o
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Ddepcomp28 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
29 echo "depcomp: Variables source, object and depmode must be set" 1>&2
35 base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'`
36 dir=`echo "$object" | sed 's,/.*$,/,'`
37 if test "$dir" = "$object"; then
69 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
100 echo "$object : \\" > "$depfile"
144 echo "$object : \\" > "$depfile"
176 # Also, the AIX compiler puts `$object:' at the start of each line;
177 # $object does
[all...]

Completed in 222 milliseconds

1234567891011>>