/external/webrtc/common_audio/ |
D | channel_buffer_unittest.cc | 33 ChannelBuffer<float> chb(kNumFrames, kStereo); in TEST() local 34 EXPECT_EQ(chb.num_channels(), kStereo); in TEST() 35 chb.set_num_channels(kMono); in TEST() 36 EXPECT_EQ(chb.num_channels(), kMono); in TEST() 57 ChannelBuffer<float> chb(kNumFrames, kMono); in TEST() local 58 RTC_EXPECT_DEATH(chb.set_num_channels(kStereo), "num_channels"); in TEST()
|
/external/scapy/scapy/asn1/ |
D | ber.py | 64 return chb(l) 67 s = chb(l&0xff)+s 72 return chb(len(s)|0x80)+s 94 return b"".join(chb(k) for k in x) 136 return chb(n) 144 return chb(tag) + s[1:] 160 s = chb(hash(hidden_tag)) + s 287 s = [chb(hash(c)) for c in s] 289 s.append(chb(hash(cls.tag))) 332 s = b"".join(chb(int(b"".join(chb(y) for y in x),2)) for x in zip(*[iter(s)]*8)) [all …]
|
/external/scapy/scapy/layers/ |
D | vrrp.py | 39 p = p[:6]+chb(ck>>8)+chb(ck&0xff)+p[8:] 75 p = p[:6]+chb(ck>>8)+chb(ck&0xff)+p[8:]
|
D | isakmp.py | 117 s = chb(val&0xff)+s 236 p = p[:2]+chb((l>>8)&0xff)+chb(l&0xff)+p[4:]
|
D | dhcp.py | 275 s += chb(onum) 276 s += chb(len(oval)) 281 s += chb(DHCPRevOptions[o][0]) 283 s += chb(o)+b"\0"
|
D | lltd.py | 219 pkt = chb(flags + (count >> 8)) + chb(count % 256) + pkt[2:] 261 pkt = chb(flags + (length >> 8)) + chb(length % 256) + pkt[2:]
|
D | eap.py | 22 from scapy.compat import orb, chb 84 return chb(self.type) + self.payload.hashret() 278 p = p[:2] + chb((l >> 8) & 0xff) + chb(l & 0xff) + p[4:]
|
D | l2.py | 354 p = p[:4]+chb((c>>8)&0xff)+chb(c&0xff)+p[6:] 385 p = p[:4] + chb((pay_len >> 8) & 0xff) + chb(pay_len & 0xff) + p[6:]
|
D | inet.py | 320 opt += chb(onum) + chb(2+len(oval))+ raw(oval) 387 p = chb(((self.version&0xf)<<4) | ihl&0x0f)+p[1:] 393 p = p[:10]+chb(ck>>8)+chb(ck&0xff)+p[12:] 528 p = p[:12]+chb((dataofs << 4) | orb(p[12])&0x0f)+p[13:] 696 p = p[:2] + chb(ck>>8) + chb(ck&0xff) + p[4:]
|
/external/scapy/scapy/contrib/ |
D | eigrp.py | 51 from scapy.compat import chb, raw 229 p = p[:6] + chb((keysize >> 8) & 0xff) + chb(keysize & 0xff) + p[8:] 249 p = p[:2] + chb((l >> 8) & 0xff) + chb(l & 0xff) + p[4:] 480 p = p[:2] + chb((c >> 8) & 0xff) + chb(c & 0xff) + p[4:]
|
D | igmp.py | 26 from scapy.compat import chb, orb 77 p = p[:2]+chb(ck>>8)+chb(ck&0xff)+p[4:]
|
D | bgp.py | 627 p = chb(p[0]) + chb(length) + p[2:] 918 packet = chb(p[0]) + chb(length) 1168 p = chb(p[0]) + chb(segment_len) + p[2:] 1197 p = chb(p[0]) + chb(segment_len) + p[2:] 1936 p = chb(p[0]) + chb(segment_len) + p[2:]
|
D | mqtt.py | 12 from scapy.compat import orb, chb 29 data = b"".join(chb(val | (0 if i == lastoffset else 128))
|
D | http2.py | 320 return chb(x) 324 sl = [chb(self._max_value)] 327 sl.append(chb(0x80 | (x & 0x7F))) 329 sl.append(chb(x)) 391 return s[0] + chb((s[2] << self.size) + self._max_value) + self.i2m(pkt, val)[1:] 394 return chb(s[0]) + chb((s[2] << self.size) + orb(self.i2m(pkt, val))) 1119 s.insert(0, chb((bit_str >> (i*8)) & 0xFF)) 1161 parent[b] = chb(i) if i < 256 else EOS()
|
D | tacacs.py | 30 from scapy.compat import chb, orb 63 return b"".join(chb(orb(pad[i]) ^ orb(pay[i])) for i in range(len(pay)))
|
/external/scapy/scapy/ |
D | compat.py | 82 def chb(x): function 106 def chb(x): function
|
D | utils6.py | 396 d = b"".join(chb(x) for x in range(256)) 398 s += chb(random.choice(d)) 404 s1 = chb(orb(s1[0]) | 0x04) + s1[1:]
|
/external/icu/icu4c/source/data/lang/ |
D | de_AT.txt | 8 chb{"Chibcha-Sprache"}
|
D | de_CH.txt | 18 chb{"Chibcha-Sprache"}
|
/external/llvm-project/lldb/test/API/lang/objc/bitfield_ivars/ |
D | main.m | 54 ContainsAHasBitfield *chb = [[ContainsAHasBitfield alloc] init];
|
/external/clang/test/SemaObjC/ |
D | block-explicit-return-type.m | 37 …const char * (^chb) (int flag, const char *arg, char *arg1) = ^ const char * (int flag, const char…
|
/external/llvm-project/clang/test/SemaObjC/ |
D | block-explicit-return-type.m | 37 …const char * (^chb) (int flag, const char *arg, char *arg1) = ^ const char * (int flag, const char…
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | aggressive_dead_code_elim_pass.cpp | 221 Instruction* chb = currentHeaderBranch.top(); in ComputeBlock2HeaderMaps() local 222 if (chb != nullptr) in ComputeBlock2HeaderMaps() 223 currentMergeBlockId = branch2merge_[chb]->GetSingleWordInOperand(0); in ComputeBlock2HeaderMaps()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/ |
D | aggressive_dead_code_elim_pass.cpp | 221 Instruction* chb = currentHeaderBranch.top(); in ComputeBlock2HeaderMaps() local 222 if (chb != nullptr) in ComputeBlock2HeaderMaps() 223 currentMergeBlockId = branch2merge_[chb]->GetSingleWordInOperand(0); in ComputeBlock2HeaderMaps()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | aggressive_dead_code_elim_pass.cpp | 221 Instruction* chb = currentHeaderBranch.top(); in ComputeBlock2HeaderMaps() local 222 if (chb != nullptr) in ComputeBlock2HeaderMaps() 223 currentMergeBlockId = branch2merge_[chb]->GetSingleWordInOperand(0); in ComputeBlock2HeaderMaps()
|