Lines Matching refs:frm
401 "maketrans(frm, to, /)\n"
406 "The returned table will be one where each byte in frm is mapped to the byte at\n"
409 "The bytes objects frm and to must be of the same length.");
415 bytes_maketrans_impl(Py_buffer *frm, Py_buffer *to);
421 Py_buffer frm = {NULL, NULL};
427 if (PyObject_GetBuffer(args[0], &frm, PyBUF_SIMPLE) != 0) {
430 if (!PyBuffer_IsContiguous(&frm, 'C')) {
441 return_value = bytes_maketrans_impl(&frm, &to);
444 /* Cleanup for frm */
445 if (frm.obj) {
446 PyBuffer_Release(&frm);