Lines Matching defs:ord
2364 char ord;
2377 ord = PyBytes_AS_STRING(ascii_order)[0];
2380 if (ord != 'C' && ord != 'F' && ord != 'A') {
2386 return ord;
2397 char ord;
2419 ord = get_ascii_order(order);
2420 if (ord == CHAR_MAX)
2423 return PyMemoryView_GetContiguous(obj, (int)type, ord);
2434 char ord;
2446 ord = get_ascii_order(order);
2447 if (ord == CHAR_MAX) {
2457 if (PyBuffer_ToContiguous(buf, &view, view.len, ord) < 0) {
2573 char ord;
2579 ord = get_ascii_order(order);
2580 if (ord == CHAR_MAX) {
2587 ret = PyBuffer_IsContiguous(base, ord) ? Py_True : Py_False;
2596 ret = PyBuffer_IsContiguous(&view, ord) ? Py_True : Py_False;