Searched refs:slot (Results 1 - 25 of 524) sorted by path

1234567891011>>

/external/aac/libPCMutils/src/
H A Dpcmutils_lib.cpp596 /* Just assigning the channels to the next best slot can lead to undesired results (especially for x/x/1.x
597 configurations). Thus use the MPEG-like sorting index to find the best fitting slot for each channel.
606 /* Got front channel slot */
611 /* Got back channel slot */
616 /* Got lfe channel slot */
1463 int slot; local
1465 for (slot = 0; slot <= PCM_DMX_MAX_DELAY_FRAMES; slot += 1) {
1466 FDKmemcpy(&self->bsMetaData[slot],
1891 int ch, slot; local
[all...]
/external/aac/libSBRdec/src/
H A Dpsdec.cpp323 /* slot based funcion prototypes */
1288 if (h_ps_d->procFrameBased == 1) /* If we have switched from frame to slot based processing */
1320 hybridRealLeft, /* left hybrid time slot */
1322 hybridScal, /* scale factor of left hybrid time slot */
1323 rIntBufferLeft[0], /* left qmf time slot */
1325 sf_IntBuffer, /* scale factor of left and right qmf time slot */
1326 hybridRealRight, /* right hybrid time slot */
1328 rIntBufferRight, /* right qmf time slot */
1341 hybridRealLeft, /* left hybrid time slot */
1343 rIntBufferLeft[0], /* left qmf time slot */
1407 int slot; local
[all...]
H A Dsbr_dec.cpp116 int slot, i; local
121 for(slot=0; slot<hSbrDec->LppTrans.pSettings->overlap; slot++) {
122 QmfBufferReal[slot] = ptr; ptr += (64);
128 QmfBufferReal[slot] = ptr; ptr += (64);
129 slot++;
140 int slot; local
148 for(slot=0; slot<hSbrDe
327 int i, slot, reserve; local
[all...]
H A Dsbrdecoder.cpp152 UCHAR slot = hdrSlotUsage[currentSlot]; local
157 if ( (hdrSlotUsage[s] == slot)
158 && (s != slot) ) {
172 slot = s;
179 return slot;
327 /* Init frame delay slot handling */
599 /* Trigger a reset before processing this slot */
772 /* Set sync state UPSAMPLING for the corresponding slot.
959 thisHdrSlot = getHeaderSlot( hSbrElement->useFrameSlot, hSbrElement->useHeaderSlot ); /* Get a free header slot not used by frames not processed yet. */
961 /* Assign the free slot t
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas785 // index searches for items that have been probed out of their slot,
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DFrame.java213 private int slot; field in class:Frame.Variable
228 slot = -1;
359 * Returns variable slot value.
364 return slot;
368 * Assigns new slot value.
370 * @param slot
371 * new slot value
373 public void setSlot(int slot) { argument
374 this.slot = slot;
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
H A DVariableTableTest.java81 int slot = reply.getNextValueAsInt();
82 logWriter.println("slot = "+slot);
H A DVariableTableWithGenericTest.java84 int slot = reply.getNextValueAsInt();
85 logWriter.println("slot = "+slot);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DJDWPStackFrameTestCase.java62 int slot; field in class:JDWPStackFrameTestCase.VarInfo
66 public VarInfo(String name, int slot, String signature) { argument
67 this.slot = slot;
73 return slot;
144 int slot = reply.getNextValueAsInt();
145 varInfos[i] = new VarInfo(name, slot, sign);
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_sock_rfc.c186 APPL_TRACE_WARNING("invalid rfc slot id: %d", id);
192 int slot = -1; local
201 slot = i;
205 if(0<= slot && slot < MAX_RFC_CHANNEL)
206 return &rfc_slots[slot];
217 APPL_TRACE_DEBUG("can not find any slot is requesting sdp");
234 APPL_TRACE_ERROR("invalid rfc slot id, cannot be 0");
293 //now update listen rfc_handle of server slot
300 //now swap the slot i
[all...]
/external/chromium_org/base/metrics/
H A Dstats_table.cc278 // thread exits and return the table slot.
284 int slot; member in struct:base::StatsTable::TLSData
338 return data->slot;
342 int slot = 0; local
347 // so that two threads don't grab the same slot. Fortunately,
352 slot = FindEmptyThread();
353 if (!slot) {
361 strlcpy(internal_->thread_name(slot), thread_name.c_str(),
363 *(internal_->thread_tid(slot)) = PlatformThread::CurrentId();
364 *(internal_->thread_pid(slot))
480 int slot = table->GetSlot(); local
[all...]
/external/chromium_org/base/process/
H A Dprocess_iterator_linux.cc82 dirent* slot = readdir(procfs_dir_); local
84 if (!slot)
88 pid = internal::ProcDirSlotToPid(slot->d_name);
/external/chromium_org/base/threading/
H A Dthread_local.h10 // mechanism. On construction, they will allocate a TLS slot, and free the
11 // TLS slot on destruction. No memory management (creation or destruction) is
75 static void AllocateSlot(SlotType* slot);
76 static void FreeSlot(SlotType slot);
77 static void* GetValueFromSlot(SlotType slot);
78 static void SetValueInSlot(SlotType slot, void* value);
H A Dthread_local_android.cc13 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
14 bool succeed = slot->Initialize(NULL);
19 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
20 slot.Free();
24 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
25 return slot.Get();
29 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
30 slot.Set(value);
H A Dthread_local_posix.cc17 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
18 int error = pthread_key_create(slot, NULL);
23 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
24 int error = pthread_key_delete(slot);
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
30 return pthread_getspecific(slot);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
35 int error = pthread_setspecific(slot, value);
H A Dthread_local_storage.cc14 // pointer to the destructor for each slot. We keep this array of pointers in a
16 // We use the single OS-level TLS slot (giving us one pointer per thread) to
40 // An array of destructor function pointers for the slots. If a slot has a
68 // another TLS slot.
134 // Try to destroy the first-created-slot (which is slot 1) in our last
135 // destructor call. That user was able to function, and define a slot with
142 for (int slot = last_used_tls_key; slot > 0; --slot) {
[all...]
H A Dthread_local_storage_unittest.cc76 ThreadLocalStorage::Slot slot; local
77 slot.Set(reinterpret_cast<void*>(123));
78 int value = reinterpret_cast<intptr_t>(slot.Get());
88 // unsynchronized with the following users of the same TSD slot. This results
H A Dthread_local_win.cc15 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
16 *slot = TlsAlloc();
17 CHECK_NE(*slot, TLS_OUT_OF_INDEXES);
21 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
22 if (!TlsFree(slot)) {
23 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
28 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
29 return TlsGetValue(slot);
33 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
34 if (!TlsSetValue(slot, valu
[all...]
/external/chromium_org/chrome/browser/chromeos/login/auth/
H A Dcryptohome_authenticator_unittest.cc121 scoped_ptr<crypto::RSAPrivateKey> CreateOwnerKeyInSlot(PK11SlotInfo* slot) { argument
125 crypto::RSAPrivateKey::CreateSensitiveFromPrivateKeyInfo(slot, key));
/external/chromium_org/chrome/browser/chromeos/ownership/
H A Downer_settings_service_chromeos.cc68 crypto::ScopedPK11Slot slot = local
71 owner_key_util->FindPrivateKeyInSlot(public_key->data(), slot.get())));
/external/chromium_org/chrome/browser/chromeos/platform_keys/
H A Dplatform_keys_nss.cc107 // the slot for |token_id|.
122 // |token_id| is not empty, the slot for |token_id|. Stores the slot in |state|
358 // Only the slot and not the NSSCertDatabase is required. Ignore |cert_db|.
415 // Only the slot and not the NSSCertDatabase is required. Ignore |cert_db|.
435 // present and stored in the queried slot.
462 // Get the pointer to slot before base::Passed releases |state|.
463 PK11SlotInfo* slot = state->slot_.get(); local
465 base::Bind(&DidGetCertificates, base::Passed(&state)), slot); local
488 // Check that the private key is in the correct slot
489 PK11SlotInfo* slot = local
[all...]
/external/chromium_org/chrome/browser/extensions/api/enterprise_platform_keys/
H A Denterprise_platform_keys_apitest_nss.cc112 PK11SlotInfo* slot) {
121 PK11_ImportDERPrivateKeyInfoAndReturnKey(slot,
272 // Import a private key to the system slot. The Javascript part of this
276 test_system_slot_->slot());
110 ImportPrivateKeyPKCS8ToSlot(const unsigned char* pkcs8_der, size_t pkcs8_der_size, PK11SlotInfo* slot) argument
/external/chromium_org/chrome/browser/ui/
H A Dcrypto_module_delegate_nss.cc41 // TODO(mattm): allow choosing which slot to generate and store the key.
92 crypto::ScopedPK11Slot slot) {
94 slot_ = slot.Pass();
104 // initializing the slot handle is unnecessary.
91 DidGetSlot(const base::Closure& callback, crypto::ScopedPK11Slot slot) argument
H A Dcrypto_module_delegate_nss.h20 // Delegate to handle unlocking a slot or indicating which slot to store a key
56 void DidGetSlot(const base::Closure& callback, crypto::ScopedPK11Slot slot);
69 // The slot which will be returned by RequestSlot.
H A Dcrypto_module_password_dialog_nss.cc110 // (SECFailure). Either way we're done with this slot.
147 cert->os_cert_handle()->slot));

Completed in 466 milliseconds

1234567891011>>