Searched refs:class_id (Results 1 - 25 of 62) sorted by relevance

123

/external/libvpx/libvpx/third_party/libmkv/
H A DEbmlWriter.h30 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id);
31 void Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui);
32 void Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
33 void Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
34 void Ebml_SerializeFloat(EbmlGlobal *glob, unsigned long class_id, double d);
37 void Ebml_SerializeString(EbmlGlobal *glob, unsigned long class_id, const char *s);
38 void Ebml_SerializeUTF8(EbmlGlobal *glob, unsigned long class_id, wchar_t *s);
39 void Ebml_SerializeData(EbmlGlobal *glob, unsigned long class_id, unsigned char *data, unsigned long data_length);
H A DEbmlWriter.c62 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id) { argument
65 if (class_id >= 0x01000000)
67 else if (class_id >= 0x00010000)
69 else if (class_id >= 0x00000100)
74 Ebml_Serialize(glob, (void *)&class_id, sizeof(class_id), len);
77 void Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui) { argument
79 Ebml_WriteID(glob, class_id);
84 void Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui) { argument
89 Ebml_WriteID(glob, class_id);
105 Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long bin) argument
116 Ebml_SerializeFloat(EbmlGlobal *glob, unsigned long class_id, double d) argument
129 Ebml_SerializeString(EbmlGlobal *glob, unsigned long class_id, const char *s) argument
134 Ebml_SerializeUTF8(EbmlGlobal *glob, unsigned long class_id, wchar_t *s) argument
139 Ebml_SerializeData(EbmlGlobal *glob, unsigned long class_id, unsigned char *data, unsigned long data_length) argument
[all...]
H A DEbmlBufferWriter.h15 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
H A DEbmlBufferWriter.c38 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id) { argument
39 Ebml_WriteID(glob, class_id);
/external/openfst/src/include/fst/
H A Dpartition.h104 // Add element_id to class_id. The Add method is used to initialize
107 void Add(T element_id, T class_id) { argument
110 if (classes_[class_id])
111 classes_[class_id]->prev = element;
112 element->next = classes_[class_id];
114 classes_[class_id] = element;
116 class_index_[element_id] = class_id;
117 class_size_[class_id]++;
120 // Move and element_id to class_id. Disconnects (removes) element
122 void Move(T element_id, T class_id) { argument
136 T class_id = class_index_[element_id]; local
159 SplitRefine(T class_id) argument
212 const T class_id(T element_id) const { function in class:fst::Partition
260 PartitionIterator(const Partition<T>& partition, T class_id) argument
[all...]
H A Dminimize.h94 if (partition_.class_id(arc1.nextstate) <
95 partition_.class_id(arc2.nextstate)) return true;
96 if (partition_.class_id(arc1.nextstate) >
97 partition_.class_id(arc2.nextstate)) return false;
190 StateId class_id = P_.AddClass(); local
191 P_.Add(siter.Value(), class_id);
192 equiv_map[siter.Value()] = class_id;
193 L_.Enqueue(class_id);
198 class_id = P_.AddClass();
199 P_.Add(s, class_id);
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dpartition.h99 // Add element_id to class_id. The Add method is used to initialize
102 void Add(T element_id, T class_id) { argument
105 if (classes_[class_id])
106 classes_[class_id]->prev = element;
107 element->next = classes_[class_id];
109 classes_[class_id] = element;
111 class_index_[element_id] = class_id;
112 class_size_[class_id]++;
115 // Move and element_id to class_id. Disconnects (removes) element
117 void Move(T element_id, T class_id) { argument
131 T class_id = class_index_[element_id]; local
154 SplitRefine(T class_id) argument
207 const T class_id(T element_id) const { function in class:fst::Partition
255 PartitionIterator(const Partition<T>& partition, T class_id) argument
[all...]
H A Dminimize.h87 if (partition_.class_id(arc1.nextstate) <
88 partition_.class_id(arc2.nextstate)) return true;
89 if (partition_.class_id(arc1.nextstate) >
90 partition_.class_id(arc2.nextstate)) return false;
177 StateId class_id = P_.AddClass(); local
178 P_.Add(siter.Value(), class_id);
179 equiv_map[siter.Value()] = class_id;
180 L_.Enqueue(class_id);
185 class_id = P_.AddClass();
186 P_.Add(s, class_id);
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h28 // Classes 1 - 16 correspond to sizes 16 to 256 (size = class_id * 16).
117 static uptr Size(uptr class_id) { argument
118 if (class_id <= kMidClass)
119 return kMinSize * class_id;
120 class_id -= kMidClass;
121 uptr t = kMidSize << (class_id >> S);
122 return t + (t >> S) * (class_id & M);
136 static uptr MaxCached(uptr class_id) { argument
137 if (class_id == 0) return 0;
138 uptr n = (1UL << kMaxBytesCachedLog) / Size(class_id);
162 SizeClassRequiresSeparateTransferBatch(uptr class_id) argument
332 AllocateBatch(AllocatorStats *stat, AllocatorCache *c, uptr class_id) argument
343 DeallocateBatch(AllocatorStats *stat, uptr class_id, Batch *b) argument
359 uptr class_id = GetSizeClass(p); local
381 uptr class_id = GetSizeClass(p); local
489 GetRegionInfo(uptr class_id) argument
504 PopulateFreeList(AllocatorStats *stat, AllocatorCache *c, uptr class_id, RegionInfo *region) argument
654 AllocateBatch(AllocatorStats *stat, AllocatorCache *c, uptr class_id) argument
667 DeallocateBatch(AllocatorStats *stat, uptr class_id, Batch *b) argument
774 AllocateRegion(AllocatorStats *stat, uptr class_id) argument
785 GetSizeClassInfo(uptr class_id) argument
790 PopulateFreeList(AllocatorStats *stat, AllocatorCache *c, SizeClassInfo *sci, uptr class_id) argument
842 Allocate(SizeClassAllocator *allocator, uptr class_id) argument
854 Deallocate(SizeClassAllocator *allocator, uptr class_id, void *p) argument
896 Refill(SizeClassAllocator *allocator, uptr class_id) argument
908 Drain(SizeClassAllocator *allocator, uptr class_id) argument
[all...]
/external/chromium_org/v8/src/
H A Dheap-profiler.cc70 uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback) {
71 ASSERT(class_id != v8::HeapProfiler::kPersistentHandleNoClassId);
72 if (wrapper_callbacks_.length() <= class_id) {
74 NULL, class_id - wrapper_callbacks_.length() + 1);
76 wrapper_callbacks_[class_id] = callback;
81 uint16_t class_id, Object** wrapper) {
82 if (wrapper_callbacks_.length() <= class_id) return NULL;
83 return wrapper_callbacks_[class_id](
84 class_id, Utils::ToLocal(Handle<Object>(wrapper)));
69 DefineWrapperClass( uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback) argument
80 ExecuteWrapperClassCallback( uint16_t class_id, Object** wrapper) argument
H A Dheap-profiler.h76 uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback);
78 v8::RetainedObjectInfo* ExecuteWrapperClassCallback(uint16_t class_id,
/external/v8/src/
H A Dheap-profiler.cc90 uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback) {
91 ASSERT(class_id != v8::HeapProfiler::kPersistentHandleNoClassId);
92 if (wrapper_callbacks_.length() <= class_id) {
94 NULL, class_id - wrapper_callbacks_.length() + 1);
96 wrapper_callbacks_[class_id] = callback;
101 uint16_t class_id, Object** wrapper) {
102 if (wrapper_callbacks_.length() <= class_id) return NULL;
103 return wrapper_callbacks_[class_id](
104 class_id, Utils::ToLocal(Handle<Object>(wrapper)));
89 DefineWrapperClass( uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback) argument
100 ExecuteWrapperClassCallback( uint16_t class_id, Object** wrapper) argument
H A Dheap-profiler.h68 uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback);
70 v8::RetainedObjectInfo* ExecuteWrapperClassCallback(uint16_t class_id,
/external/chromium_org/media/tools/constrained_network_server/
H A Dtraffic_control.py196 class_id = '1:%x' % config['port']
204 'parent', '1:', 'classid', class_id, 'htb', 'rate', bandwidth,
207 (class_id, option)))
221 class_id = '1:%x' % config['port']
223 class_id, 'handle', port_hex + ':0', 'netem']
234 _Exec(command, msg='Could not attach qdisc to class ID %s.' % class_id)
244 class_id = '1:%x' % port
248 '0xffff', 'flowid', class_id]
/external/chromium_org/chrome/tools/ipclist/
H A Dipclist.cc53 int class_id = IPC_MESSAGE_ID_CLASS(msgtable[i].id); local
54 if (class_id >= LastIPCMsgStart) {
58 while (class_id > previous_class_id + 1) {
62 std::cout << "Missing message file: gap before " << class_id << "\n"; local
68 previous_class_id = class_id;
69 if (class_id > highest_class_id)
70 highest_class_id = class_id;
/external/libsepol/include/sepol/policydb/
H A Davrule_block.h35 extern int is_perm_enabled(char *class_id, char *perm_id, policydb_t * p);
/external/chromium_org/chrome_frame/
H A Dchrome_frame_activex.h60 STDMETHOD(GetClassID)(CLSID* class_id) { argument
61 if (class_id != NULL)
62 *class_id = GetObjectCLSID();
/external/chromium_org/media/webm/chromeos/
H A Dwebm_encoder.h60 void StartSubElement(unsigned long class_id);
/external/libsepol/src/
H A Davrule_block.c177 int is_perm_enabled(char *class_id, char *perm_id, policydb_t * p) argument
181 if (!is_id_enabled(class_id, p, SYM_CLASSES)) {
185 (class_datum_t *) hashtab_search(p->p_classes.table, class_id);
/external/checkpolicy/
H A Dmodule_compiler.h73 int is_perm_in_scope(hashtab_key_t perm_id, hashtab_key_t class_id);
/external/chromium_org/media/video/capture/win/
H A Dfilter_base_win.h62 STDMETHOD(GetClassID)(CLSID* class_id) = 0;
/external/chromium_org/v8/src/third_party/vtune/
H A Djitprofiling.h239 unsigned int class_id; member in struct:_iJIT_Method_Load
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.h200 unsigned int class_id; member in struct:_iJIT_Method_Load
/external/qemu/
H A Dusb-linux.c64 typedef int USBScanFunc(void *opaque, int bus_num, int addr, int class_id,
1064 int bus_num, addr, speed, device_count, class_id, product_id, vendor_id; local
1080 bus_num = addr = speed = class_id = product_id = vendor_id = 0;
1089 ret = func(opaque, bus_num, addr, class_id, vendor_id,
1109 class_id = 0xff;
1127 class_id = strtoul(buf, NULL, 16);
1133 ret = func(opaque, bus_num, addr, class_id, vendor_id,
1183 int bus_num, addr, speed, class_id, product_id, vendor_id; local
1209 if (sscanf(line, "%x", &class_id) != 1)
1241 ret = func(opaque, bus_num, addr, class_id, vendor_i
1335 usb_host_auto_scan(void *opaque, int bus_num, int addr, int class_id, int vendor_id, int product_id, const char *product_name, int speed) argument
1516 usb_host_find_device_scan(void *opaque, int bus_num, int addr, int class_id, int vendor_id, int product_id, const char *product_name, int speed) argument
1612 usb_info_device(int bus_num, int addr, int class_id, int vendor_id, int product_id, const char *product_name, int speed) argument
1648 usb_host_info_device(void *opaque, int bus_num, int addr, int class_id, int vendor_id, int product_id, const char *product_name, int speed) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cc110 uptr class_id = a->GetSizeClass(x); local
111 CHECK_EQ(class_id, Allocator::SizeClassMapT::ClassID(size));
490 for (int class_id = 1; class_id <= 5; class_id++) {
494 allocated[i] = cache.Allocate(a, class_id);
497 cache.Deallocate(a, class_id, allocated[i]);
562 uptr class_id; member in struct:NewThreadParams
568 params->thread_cache->Deallocate(params->allocator, params->class_id, params);
582 uptr class_id local
[all...]

Completed in 661 milliseconds

123