HomeSort by relevance Sort by last modified time
    Searched refs:desc (Results 1 - 25 of 585) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/ti/wlan/wl1271/TWD/FirmwareApi/
public_host_int.h 111 #define RX_DESC_GET_MEM_BLK(desc) ( (desc & 0x000000FF) >> 0 ) /* The first mem-block of the Rx packet */
112 #define RX_DESC_GET_LENGTH(desc) ( (desc & 0x000FFF00) >> 8 ) /* The length of the packet in words */
113 #define RX_DESC_GET_UNALIGNED(desc) ( (desc & 0x00100000) >> 20 ) /* If set, the payload is not 4 bytes aligned */
114 #define RX_DESC_GET_PACKET_CLASS_TAG(desc) ( (desc & 0xFF000000) >> 24 ) /* Get the RX packet class tag */
118 #define RX_DESC_SET_MEM_BLK(desc, value) ( desc = (desc & ~0x000000FF) | (value << 0 )
    [all...]
  /system/wlan/ti/wilink_6_1/TWD/FirmwareApi/
public_host_int.h 111 #define RX_DESC_GET_MEM_BLK(desc) ( (desc & 0x000000FF) >> 0 ) /* The first mem-block of the Rx packet */
112 #define RX_DESC_GET_LENGTH(desc) ( (desc & 0x000FFF00) >> 8 ) /* The length of the packet in words */
113 #define RX_DESC_GET_UNALIGNED(desc) ( (desc & 0x00100000) >> 20 ) /* If set, the payload is not 4 bytes aligned */
114 #define RX_DESC_GET_PACKET_CLASS_TAG(desc) ( (desc & 0xFF000000) >> 24 ) /* Get the RX packet class tag */
118 #define RX_DESC_SET_MEM_BLK(desc, value) ( desc = (desc & ~0x000000FF) | (value << 0 )
    [all...]
  /external/libvpx/vpx_mem/memory_manager/
hmm_largest.c 18 U(size_aau) U(largest_available)(U(descriptor) *desc)
22 if (!(desc->avl_tree_root))
28 AUDIT_BLOCK(PTR_REC_TO_HEAD(desc->avl_tree_root))
35 (U(avl_avl) *) & (desc->avl_tree_root),
39 if (desc->last_freed)
45 AUDIT_BLOCK(desc->last_freed)
48 lf_size = BLOCK_BAUS(desc->last_freed);
hmm_alloc.c 18 void *U(alloc)(U(descriptor) *desc, U(size_aau) n)
22 if (desc->avl_tree_root)
23 AUDIT_BLOCK(PTR_REC_TO_HEAD(desc->avl_tree_root))
26 if (desc->last_freed)
29 AUDIT_BLOCK(desc->last_freed)
32 U(into_free_collection)(desc, (head_record *)(desc->last_freed));
34 desc->last_freed = 0;
52 (U(avl_avl) *) & (desc->avl_tree_root), (U(size_bau)) n,
58 U(alloc_from_bin)(desc, ptr_rec_ptr, (U(size_bau)) n) : 0)
    [all...]
hmm_resize.c 18 int U(resize)(U(descriptor) *desc, void *mem, U(size_aau) n)
41 if (desc->avl_tree_root)
42 AUDIT_BLOCK(PTR_REC_TO_HEAD(desc->avl_tree_root))
52 (next_head_ptr == desc->last_freed) ||
69 if (next_head_ptr == desc->last_freed)
70 desc->last_freed = 0;
72 U(out_of_free_collection)(desc, next_head_ptr);
101 if (desc->last_freed)
104 AUDIT_BLOCK(desc->last_freed)
107 U(into_free_collection)(desc, (head_record *)(desc->last_freed))
    [all...]
hmm_base.c 18 void U(init)(U(descriptor) *desc)
20 desc->avl_tree_root = 0;
21 desc->last_freed = 0;
41 U(descriptor) *desc,
48 U(avl_insert)((U(avl_avl) *) & (desc->avl_tree_root), ptr_rec_ptr);
78 U(descriptor) *desc,
113 (U(avl_avl) *) &(desc->avl_tree_root), BLOCK_BAUS(head_ptr));
140 desc->last_freed = rem_head_ptr;
150 U(descriptor) *desc,
168 U(avl_subst)((U(avl_avl) *) &(desc->avl_tree_root), next)
    [all...]
hmm_shrink.c 18 void U(shrink_chunk)(U(descriptor) *desc, U(size_bau) n_baus_to_shrink)
21 BAUS_BACKWARD(desc->end_of_shrinkable_chunk, DUMMY_END_BLOCK_BAUS);
41 if (last_block == desc->last_freed)
60 desc->last_freed = 0;
82 if (desc->avl_tree_root)
83 AUDIT_BLOCK(PTR_REC_TO_HEAD(desc->avl_tree_root))
86 U(into_free_collection)(desc, last_block);
  /external/bluetooth/bluez/src/
log.c 74 static gboolean is_enabled(struct btd_debug_desc *desc)
82 if (desc->name != NULL && g_pattern_match_simple(enabled[i],
83 desc->name) == TRUE)
85 if (desc->file != NULL && g_pattern_match_simple(enabled[i],
86 desc->file) == TRUE)
95 struct btd_debug_desc *desc; local
97 for (desc = __start___debug; desc < __stop___debug; desc++)
98 desc->flags |= BTD_DEBUG_FLAG_PRINT
104 struct btd_debug_desc *desc; local
    [all...]
plugin.c 47 struct bluetooth_plugin_desc *desc; member in struct:bluetooth_plugin
55 return plugin2->desc->priority - plugin1->desc->priority;
58 static gboolean add_plugin(void *handle, struct bluetooth_plugin_desc *desc)
62 if (desc->init == NULL)
65 if (g_str_equal(desc->version, VERSION) == FALSE) {
66 error("Version mismatch for %s", desc->name);
70 DBG("Loading %s plugin", desc->name);
78 plugin->desc = desc;
156 struct bluetooth_plugin_desc *desc; local
    [all...]
  /bionic/libc/bionic/
malloc_debug_qemu.c 162 MallocDesc* desc; member in struct:MallocDescQuery
232 const MallocDesc* desc);
320 * desc - MallocDesc instance to dump.
323 #define log_mdesc(type, desc, frmt, ...) \
333 (desc)); \
367 * desc - Allocation descriptor.
372 mallocdesc_user_ptr(const MallocDesc* desc)
374 return (char*)desc->ptr + desc->prefix_size;
380 * desc - Allocation descriptor
711 MallocDesc desc; local
748 MallocDesc desc; local
793 MallocDesc desc; local
976 MallocDesc desc; local
    [all...]
  /external/skia/tests/
Test.h 35 void assertTrue(bool cond, const char desc[]) {
37 this->report(desc, kFailed);
40 void assertFalse(bool cond, const char desc[]) {
42 this->report(desc, kFailed);
45 void reportFailed(const char desc[]) {
46 this->report(desc, kFailed);
48 void reportFailed(const SkString& desc) {
49 this->report(desc.c_str(), kFailed);
58 virtual void onReport(const char desc[], Result) {}
96 SkString desc; \
    [all...]
  /external/v8/test/mjsunit/
object-define-property.js 115 var desc = Object.getOwnPropertyDescriptor(obj1, "foo");
116 assertFalse(desc.configurable);
117 assertFalse(desc.enumerable);
118 assertFalse(desc.writable);
119 assertEquals(desc.get, undefined);
120 assertEquals(desc.set, undefined);
121 assertEquals(desc.value, undefined);
126 desc = Object.getOwnPropertyDescriptor(obj1, "bar");
127 assertEquals(desc, undefined);
140 desc = Object.getOwnPropertyDescriptor(obj1, "bar")
    [all...]
  /development/host/windows/usb/api/
adb_interface.cpp 68 bool AdbInterfaceObject::GetUsbDeviceDescriptor(USB_DEVICE_DESCRIPTOR* desc) {
74 if (NULL == desc) {
79 CopyMemory(desc, usb_device_descriptor(), sizeof(USB_DEVICE_DESCRIPTOR));
85 USB_CONFIGURATION_DESCRIPTOR* desc) {
91 if (NULL == desc) {
96 CopyMemory(desc, usb_config_descriptor(),
103 USB_INTERFACE_DESCRIPTOR* desc) {
109 if (NULL == desc) {
114 CopyMemory(desc, usb_interface_descriptor(), sizeof(USB_INTERFACE_DESCRIPTOR));
  /external/qemu/memcheck/
memcheck.c 85 * desc - Allocation descriptor for the violation.
97 MallocDescEx* desc,
108 desc->malloc_desc.av_count++;
171 addr < (target_ulong)mallocdesc_get_user_ptr(&desc->malloc_desc) ?
174 memcheck_dump_malloc_desc(desc, 1, 0);
199 MallocDescEx* desc; local
210 desc = procdesc_find_malloc_for_range(proc, addr, data_size);
211 *desc_ptr = desc;
212 if (desc == NULL) {
218 if (addr < mallocdesc_get_user_ptr(&desc->malloc_desc))
405 MallocDescEx desc; local
486 MallocFree desc; local
586 MallocDescEx* desc; local
621 MallocDescEx* desc; local
    [all...]
memcheck_mmrange_map.c 33 MMRangeDesc desc; member in struct:MMRangeMapEntry
53 const target_ulong start1 = d1->desc.map_start;
54 const target_ulong start2 = d2->desc.map_start;
57 return (d1->desc.map_end - 1) < start2 ? -1 : 0;
59 return (d2->desc.map_end - 1) < start1 ? 1 : 0;
90 memcpy(replaced, &existing->desc, sizeof(MMRangeDesc));
112 rdesc.desc.map_start = start;
113 rdesc.desc.map_end = end;
129 const MMRangeDesc* desc,
140 memcpy(&rdesc->desc, desc, sizeof(MMRangeDesc))
    [all...]
memcheck_malloc_map.c 40 MallocDescEx desc; member in struct:AllocMapEntry
58 return adesc->desc.malloc_desc.ptr;
71 return mallocdesc_get_alloc_end(&adesc->desc.malloc_desc);
128 memcpy(replaced, &existing->desc, sizeof(MallocDescEx));
151 adesc.desc.malloc_desc.ptr = address;
152 adesc.desc.malloc_desc.requested_bytes = block_size;
153 adesc.desc.malloc_desc.prefix_size = 0;
154 adesc.desc.malloc_desc.suffix_size = 0;
169 allocmap_insert(AllocMap* map, const MallocDescEx* desc, MallocDescEx* replaced)
179 memcpy(&adesc->desc, desc, sizeof(MallocDescEx))
    [all...]
memcheck_common.h 172 target_ulong desc; member in struct:MallocDescQuery
290 * desc - Allocation descriptor.
295 mallocdesc_get_user_ptr(const MallocDesc* desc)
297 return desc->ptr + desc->prefix_size;
302 * desc - Descriptor for the memory block, allocated in malloc handler.
307 mallocdesc_get_alloc_size(const MallocDesc* desc)
309 return desc->prefix_size + desc->requested_bytes + desc->suffix_size
    [all...]
  /libcore/luni/src/main/java/java/util/regex/
PatternSyntaxException.java 38 private String desc; field in class:PatternSyntaxException
67 this.desc = description;
94 if (desc != null) {
96 builder.append(desc);
127 return desc;
  /external/libvpx/vpx_mem/memory_manager/include/
heapmm.h 113 void HMM_UNIQUE(init)(HMM_UNIQUE(descriptor) *desc);
116 HMM_UNIQUE(descriptor) *desc, HMM_UNIQUE(size_aau) num_addr_align_units);
120 HMM_UNIQUE(descriptor) *desc, HMM_UNIQUE(size_aau) needed_addr_align_units,
124 HMM_UNIQUE(descriptor) *desc, void *mem,
129 HMM_UNIQUE(descriptor) *desc, void *mem,
133 void HMM_UNIQUE(free)(HMM_UNIQUE(descriptor) *desc, void *mem);
138 HMM_UNIQUE(descriptor) *desc);
141 HMM_UNIQUE(descriptor) *desc, void *start_of_chunk,
145 HMM_UNIQUE(descriptor) *desc, void *end_of_chunk,
150 HMM_UNIQUE(descriptor) *desc,
    [all...]
  /frameworks/base/media/libmedia/
IAudioFlingerClient.cpp 53 AudioSystem::OutputDescriptor *desc = (AudioSystem::OutputDescriptor *)param2; local
54 data.writeInt32(desc->samplingRate);
55 data.writeInt32(desc->format);
56 data.writeInt32(desc->channels);
57 data.writeInt32(desc->frameCount);
58 data.writeInt32(desc->latency);
77 AudioSystem::OutputDescriptor desc; local
84 desc.samplingRate = data.readInt32();
85 desc.format = data.readInt32();
86 desc.channels = data.readInt32()
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
ClassStubber.java 51 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
52 return super.visitAnnotation(desc, visible);
61 public MethodVisitor visitMethod(int access, String name, String desc, String signature,
63 MethodVisitor mw = super.visitMethod(access, name, desc, signature, exceptions);
64 return new MethodStubber(mw, access, name, desc, signature, exceptions);
68 public FieldVisitor visitField(int access, String name, String desc, String signature,
70 return super.visitField(access, name, desc, signature, value);
79 public void visitOuterClass(String owner, String name, String desc) {
80 super.visitOuterClass(owner, name, desc);
  /external/webkit/WebCore/platform/graphics/wx/
FontPlatformDataWx.cpp 76 FontPlatformData::FontPlatformData(const FontDescription& desc, const AtomicString& family)
84 m_font = new FontHolder(new wxFont( wxSize(0, -desc.computedPixelSize()),
85 fontFamilyToWxFontFamily(desc.genericFamily()),
86 italicToWxFontStyle(desc.italic()),
87 fontWeightToWxFontWeight(desc.weight()),
93 m_font = new FontHolder(new wxFont( desc.computedPixelSize(),
94 fontFamilyToWxFontFamily(desc.genericFamily()),
95 italicToWxFontStyle(desc.italic()),
96 fontWeightToWxFontWeight(desc.weight()),
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.h 41 bool isAccessoryDevice(USB_DEVICE_DESCRIPTOR *desc)
43 return desc->idVendor == 0x18d1 &&
44 (desc->idProduct == 0x2D00 || desc->idProduct == 0x2D01);
  /external/clearsilver/dso/
dsotest.c 12 printf("error: %s\n", err->desc);
  /external/elfutils/libebl/
eblobjnote.c 26 ebl_object_note (ebl, name, type, descsz, desc)
31 const char *desc;
33 if (! ebl->object_note (name, type, descsz, desc))
44 } *tag = (__typeof (tag)) desc;

Completed in 778 milliseconds

1 2 3 4 5 6 7 8 91011>>