Home
last modified time | relevance | path

Searched refs:join (Results 1 – 25 of 49) sorted by relevance

12

/btstack/3rd-party/micro-ecc/scripts/
H A Dmult_arm.py29 emit("ldmia r1!, {%s}", ", ".join(["r%s" % (rx[i]) for i in range(init_size)]))
30 emit("ldmia r2!, {%s}", ", ".join(["r%s" % (ry[i]) for i in range(init_size)]))
87 emit("ldmia r2!, {%s}", ", ".join(["r%s" % (ry[i]) for i in range(3)]))
91 emit("ldmia r1!, {%s}", ", ".join(["r%s" % (rx[i]) for i in range(init_size, 3)]))
185 emit("ldmia r1!, {%s}", ",".join(["r%s" % (rx[i]) for i in range(3)]))
186 emit("ldmia r2!, {%s}", ",".join(["r%s" % (ry[i]) for i in range(3)]))
/btstack/tool/
H A Dcompile_gatt.py445 fout.write('// 0x%04x %s\n' % (handle, '-'.join(parts)))
497 …fout.write('// 0x%04x %s - range [0x%04x, 0x%04x]\n' % (handle, '-'.join(parts), services[serviceU…
548 value = ', '.join([str(x) for x in parts[3:]])
555 …fout.write('// 0x%04x %s - %s\n' % (handle, '-'.join(parts[0:2]), prettyPrintProperties(parts[2])))
599 …fout.write('// 0x%04x VALUE %s - %s\n' % (handle, '-'.join(parts[0:2]), prettyPrintProperties(part…
602 handle, '-'.join(parts[0:2]), prettyPrintProperties(parts[2]), value))
685 fout.write('// 0x%04x %s-%s\n' % (handle, name, '-'.join(parts[1:])))
716 fout.write('// 0x%04x %s-%s\n' % (handle, name, '-'.join(parts[1:])))
755 fout.write('// 0x%04x CHARACTERISTIC_FORMAT-%s\n' % (handle, '-'.join(parts[1:])))
782 fout.write('// 0x%04x CHARACTERISTIC_AGGREGATE_FORMAT-%s\n' % (handle, '-'.join(parts[1:])))
[all …]
H A Ddump_keys.py15 return ''.join(str_list)
22 return ''.join(str_list)
29 return ':'.join(str_list)
H A Duuid128_formats.py33 print('little endian: %s' % ', '.join( [hex(i) for i in uuid_bytes] ))
34 print('big endian: %s' % ', '.join( [hex(i) for i in reversed(uuid_bytes)] ))
H A Ddump_tlv.py25 return ''.join([ '%c' % i if (i > 0x20 and i < 128) else '.' for i in tag])
31 return ''.join(str_list)
H A Dbtstack_rtos_generator.py218 return_type = ' '.join(filtered_parts[:-1])
237 call_args = ', '.join(call)
238 fout.write('static inline ' + return_type + ' ' + rtos_name + '(' + ", ".join(args) + '){\n')
385 rtos_file = '/'.join(path_parts)
H A Djava_binding.py196 args_string = ', '.join(args2)
242 return '\n'.join( map(java_define_string, sorted(keys)))
H A Dpython_generator.py179 args_string = ', '.join(args2)
220 return '\n'.join( map(python_define_string, sorted(keys)))
H A Ddump_h4.py31 return ''.join(str_list)
H A Ddump_pklg.py31 return ''.join(str_list)
H A Dbluetooth_psm.py48 return ''.join(stripped)
H A Ddump_gatt.py14 return ''.join(str_list)
20 return ':'.join(str_list)
H A Dbluetooth_gatt.py42 return ''.join(stripped)
H A Dsm_random_check.py33 return ''.join(str_list)
/btstack/test/sbc/
H A Dsbc_encoder_test.py79 if mse(actual_frame.join, expected_frame.join) > 0:
80 print ("join error \nE:\n %s \nD:\n %s" % (actual_frame.join, expected_frame.join))
H A Dsbc.py168 frame.join = np.zeros(frame.nr_subbands, dtype = np.uint8)
188 frame.join[sb] = 1
212 join = np.zeros(8, dtype = np.uint8) variable in SBCFrame
242 self.join = np.zeros(nr_subbands, dtype = np.uint8)
259 res += "\n - join: %s" % self.join
560 add_bits(frame.join[sb],1)
597 add_bits(frame.join[sb],1)
H A Dsbc_decoder.py80 frame.join[sb] = get_bits(fin,1)
142 if frame.join[sb]==1:
297 value_str = ''.join(values)
/btstack/3rd-party/bluedroid/decoder/srce/
H A Ddecoder-private.c182 common->frameInfo.join = *b++; in OI_SBC_ReadScalefactors()
184 common->frameInfo.join = 0; in OI_SBC_ReadScalefactors()
198 common->frameInfo.join = HIGH(f = *b++); in OI_SBC_ReadScalefactors()
/btstack/chipset/cc256x/
H A Dconvert_bts_init_scripts.py202 part_strings.append(''.join(str_list))
231 part_strings.append(''.join(str_list))
257 print("\n".join(additions))
/btstack/platform/daemon/binding/python/btstack/
H A Dbtstack_types.py8 return " ".join([('%02x' % a) for a in bytes])
37 return ":".join([('%02x' % a) for a in self.addr])
H A Dbtstack_client.py14 print(" ".join("{:02x}".format(c) for c in data))
/btstack/port/max32630-fthr/scripts/
H A Dcreate_examples.py99 fout.write(build_all % ' \\\n'.join(examples))
/btstack/chipset/csr/
H A Dconvert_psr.py45 fout.write(indent + ', '.join(["0x%02x" % val for val in hci_cmd]) + ',\n')
/btstack/test/hfp/
H A Ddump_test_sequence_from_pklg.py32 return ''.join(str_list)
/btstack/port/samv71-xplained-atwilc3000/scripts/
H A Dcreate_examples.py134 fout.write(build_all % ' \\\n'.join(examples))

12