Home
last modified time | relevance | path

Searched refs:b64lookup (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/third_party/upb/cmake/upb/json/
Dparser.c486 int32_t b64lookup(unsigned char ch) { return b64table[ch]; } in b64lookup() function
490 bool nonbase64(unsigned char ch) { return b64lookup(ch) == -1 && ch != '='; } in nonbase64()
506 val = b64lookup(ptr[0]) << 18 | in base64_push()
507 b64lookup(ptr[1]) << 12 | in base64_push()
508 b64lookup(ptr[2]) << 6 | in base64_push()
509 b64lookup(ptr[3]); in base64_push()
539 val = b64lookup(ptr[0]) << 18 | in base64_push()
540 b64lookup(ptr[1]) << 12; in base64_push()
555 val = b64lookup(ptr[0]) << 18 | in base64_push()
556 b64lookup(ptr[1]) << 12 | in base64_push()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/json/
Dparser.rl484 int32_t b64lookup(unsigned char ch) { return b64table[ch]; }
488 bool nonbase64(unsigned char ch) { return b64lookup(ch) == -1 && ch != '='; }
504 val = b64lookup(ptr[0]) << 18 |
505 b64lookup(ptr[1]) << 12 |
506 b64lookup(ptr[2]) << 6 |
507 b64lookup(ptr[3]);
537 val = b64lookup(ptr[0]) << 18 |
538 b64lookup(ptr[1]) << 12;
553 val = b64lookup(ptr[0]) << 18 |
554 b64lookup(ptr[1]) << 12 |
[all …]
/external/protobuf/php/ext/google/protobuf/
Dupb.c9259 int32_t b64lookup(unsigned char ch) { return b64table[ch]; } in b64lookup() function
9263 bool nonbase64(unsigned char ch) { return b64lookup(ch) == -1 && ch != '='; } in nonbase64()
9279 val = b64lookup(ptr[0]) << 18 | in base64_push()
9280 b64lookup(ptr[1]) << 12 | in base64_push()
9281 b64lookup(ptr[2]) << 6 | in base64_push()
9282 b64lookup(ptr[3]); in base64_push()
9312 val = b64lookup(ptr[0]) << 18 | in base64_push()
9313 b64lookup(ptr[1]) << 12; in base64_push()
9328 val = b64lookup(ptr[0]) << 18 | in base64_push()
9329 b64lookup(ptr[1]) << 12 | in base64_push()
[all …]
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.c13078 int32_t b64lookup(unsigned char ch) { return b64table[ch]; } in b64lookup() function
13082 bool nonbase64(unsigned char ch) { return b64lookup(ch) == -1 && ch != '='; } in nonbase64()
13099 val = b64lookup(ptr[0]) << 18 | in base64_push()
13100 b64lookup(ptr[1]) << 12 | in base64_push()
13101 b64lookup(ptr[2]) << 6 | in base64_push()
13102 b64lookup(ptr[3]); in base64_push()
13133 val = b64lookup(ptr[0]) << 18 | in base64_push()
13134 b64lookup(ptr[1]) << 12; in base64_push()
13149 val = b64lookup(ptr[0]) << 18 | in base64_push()
13150 b64lookup(ptr[1]) << 12 | in base64_push()
[all …]