Searched refs:inp (Results 1 – 4 of 4) sorted by relevance
82 def pack_language_or_region(inp, base): argument84 if inp is None:86 elif len(inp) == 2:87 return ord(inp[0]), ord(inp[1])89 assert len(inp) == 391 first = ord(inp[0]) - base92 second = ord(inp[1]) - base93 third = ord(inp[2]) - base
127 const int inp = open(filename, O_RDONLY); in testStreams() local128 if (inp < 0) { in testStreams()134 inp, 0 /*offset*/, length, 0 /*priority - unused*/); in testStreams()139 close(inp); in testStreams()
97 const short* inp = &in[i * 2]; in android_media_ResampleInputStream_fir21() local99 sum += ((long)*firp++) * ((long)*inp++); in android_media_ResampleInputStream_fir21()
84 def printable(inp): argument85 if type(inp) is set: # set of character sequences86 return '{' + ', '.join([printable(seq) for seq in inp]) + '}'87 if type(inp) is tuple: # character sequence88 return '<' + (', '.join([printable(ch) for ch in inp])) + '>'90 return 'U+%04X' % inp