小窓モード


プレミアム

ログイン
設定

設定

bitmaskとは 意味・読み方・使い方

ピン留め

追加できません

(登録数上限)

単語を追加

意味・対訳 ビットマスク


マイクロソフト用語集での「bitmask」の意味

bitmask


bit mask


「bitmask」を含む例文一覧

該当件数 : 15



例文

Returns a bitmask indicating stereo mixer controls.発音を聞く 例文帳に追加

ステレオミキサコントロールを示すビットマスクを返します。 - Python

This member holds a bitmask of flags relevant to the segment: 12発音を聞く 例文帳に追加

このメンバはセグメントに関連するフラグのビットマップを保持する:12 - JM

by the process's current cpuset. nodemask points to a bitmask of nodes containing up to maxnode bits.発音を聞く 例文帳に追加

nodemaskはノードのビットマスクであり、maxnode個のビットから構成される。 - JM

A bitmask or'ing together all the comparison flags above.発音を聞く 例文帳に追加

上記の比較フラグ全ての論理和をとったビットマスクです。 - Python

A bitmask or'ing together all the reporting flags above.発音を聞く 例文帳に追加

上記のエラー報告に関するフラグ全ての論理和をとったビットマスクです。 - Python

Fully populates the object properties based on the IP address and netmask/bitmask properties.発音を聞く 例文帳に追加

IP アドレスとネットマスク/ビットマスクに基づいて、オブジェクトプロパティをセットします。 - PEAR

例文

Returns a bitmask specifying the mixer controls that may be used to record.例文帳に追加

録音に使用できるミキサコントロールを特定するビットマスクを返します。 - Python

>>例文の一覧を見る


調べた例文を記録して、 効率よく覚えましょう
Weblio会員登録無料で登録できます!
  • 履歴機能
    履歴機能
    過去に調べた
    単語を確認!
  • 語彙力診断
    語彙力診断
    診断回数が
    増える!
  • マイ単語帳
    マイ単語帳
    便利な
    学習機能付き!
  • マイ例文帳
    マイ例文帳
    文章で
    単語を理解!
  • その他にも便利な機能が満載!
Weblio会員登録(無料)はこちらから

英和GIS用語集での「bitmask」の意味

bit mask


日英・英日専門用語辞書での「bitmask」の意味

bit mask


Weblio英和対訳辞書での「bitmask」の意味

bit mask

Weblio英和対訳辞書はプログラムで機械的に意味や英語表現を生成しているため、不適切な項目が含まれていることもあります。ご了承くださいませ。

Wiktionary英語版での「bitmask」の意味

bitmask

別の表記

  • bit mask

語源

bit +‎ mask

発音

    名詞

    bitmask (複数形 bitmasks)

    1. (computing) A pattern of bits indicating which bits in a second pattern are to be modified.

    動詞

    bitmask (三人称単数 現在 bitmasks, 現在分詞 bitmasking, 過去形および過去分詞 bitmasked)

    1. (computing, transitive) To mask (a value) using a bitmask.

    「bitmask」を含む例文一覧

    該当件数 : 15



    例文

    This method returns a bitmask indicating which control(s) are currently being used as a recording source.例文帳に追加

    現在録音のソースに使われているコントロールを示すビットマスクを返します。 - Python

    Return a bitmask of the audio output formats supported by the soundcard.例文帳に追加

    サウンドカードがサポートしているオーディオ出力形式をビットマスクで返します。 - Python

    Returns a bitmask indicating the new recording source (or sources) if successful; raises IOError if an invalid source was specified.例文帳に追加

    呼び出しに成功すると、新たな録音の (場合によっては複数の) ソースを示すビットマスクを返します;不正なソースを指定するとIOErrorを送出します。 - Python

    The XParseGeometry function returns a bitmask that indicates which of the four values (width, height,xoffset, and yoffset) were actually found in the string and whether thex and y values are negative.例文帳に追加

    関数XParseGeometryは、4 つの値(width, height, xoffset, yoffset)のうち実際に文字列中で設定されているものと、x, y の値が負でないかどうかを示すビットマスクを返す。 - XFree86

    The value n is a bitmask of octants in which to prefer an axial step when the Bresenhamerror term is exactly zero.例文帳に追加

    n は、Bresenham 誤差項がちょうどゼロになる時の軸の増分をどうするか指定する、8ビットのビットマスク値である。 - XFree86

    eventmask is an optional bitmask describing the type of events you want to check for, and can be a combination of the constantsPOLLIN, POLLPRI, and POLLOUT,described in the table below.例文帳に追加

    eventmask はオプションのビットマスクで、どのタイプの I/O イベントを監視したいかを記述します。 この値は以下の表で述べる定数 POLLIN、POLLPRI、および POLLOUT の組み合わせにすることができます。 - Python

    This is a bitmask of all the bits that pertain to the existence of certain fields in the type object and its extension structures.Currently, it includes the following bits:Py_TPFLAGS_HAVE_GETCHARBUFFER,Py_TPFLAGS_HAVE_SEQUENCE_IN,Py_TPFLAGS_HAVE_INPLACEOPS,Py_TPFLAGS_HAVE_RICHCOMPARE,Py_TPFLAGS_HAVE_WEAKREFS,Py_TPFLAGS_HAVE_ITER, and Py_TPFLAGS_HAVE_CLASS.例文帳に追加

    型オブジェクトおよび拡張機能構造体の特定のフィールドの存在の有無に関連する全てのビットからなるビットマスクです。 - Python

    例文

    fd is the file descriptor, and event is a bitmask with bits set for the reported events for that descriptor-- POLLIN for waiting input,POLLOUT to indicate that the descriptor can be written to, and so forth.An empty list indicates that the call timed out and no file descriptors had any events to report.If timeout is given, it specifies the length of time in milliseconds which the system will wait for events before returning.If timeout is omitted, negative, or None, the call will block until there is an event for this poll object.例文帳に追加

    timeout が与えられた場合、処理を戻すまで待機する時間の長さをミリ秒単位で指定します。 timeout が省略されたり、負の値であったり、あるいは None の場合、そのポーリングオブジェクトが監視している何らかのイベントが発生するまでブロックします。 - Python

    >>例文の一覧を見る


    bitmaskのページの著作権
    英和・和英辞典 情報提供元は 参加元一覧 にて確認できます。

       
    日本マイクロソフト株式会社日本マイクロソフト株式会社
    © 2024 Microsoft
    国土交通省国土地理院国土交通省国土地理院
    Copyright © 1995-2024 MCNC/CNIDR , A/WWW Enterprises and GSI Japan
    ※この記事は国土地理院のホームページ内の「GIS及び防災用語の多言対訳表」の情報の内、GIS用語の内容を転載しております。
    日中韓辭典研究所日中韓辭典研究所
    Copyright © 2024 CJKI. All Rights Reserved
    Text is available under Creative Commons Attribution-ShareAlike (CC-BY-SA) and/or GNU Free Documentation License (GFDL).
    Weblio英和・和英辞典に掲載されている「Wiktionary英語版」の記事は、Wiktionaryのbitmask (改訂履歴)の記事を複製、再配布したものにあたり、Creative Commons Attribution-ShareAlike (CC-BY-SA)もしくはGNU Free Documentation Licenseというライセンスの下で提供されています。

    ピン留めアイコンをクリックすると単語とその意味を画面の右側に残しておくことができます。

    こんにちは ゲスト さん

    ログイン

    Weblio会員(無料)になると

    会員登録のメリット検索履歴を保存できる!

    会員登録のメリット語彙力診断の実施回数増加!

    無料会員に登録する

    このモジュールを今後表示しない
    みんなの検索ランキング
    閲覧履歴
    無料会員登録をすると、
    単語の閲覧履歴を
    確認できます。
    無料会員に登録する
    英→日 日→英
    こんにちは ゲスト さん

    ログイン

    Weblio会員(無料)になると

    会員登録のメリット検索履歴を保存できる!

    会員登録のメリット語彙力診断の実施回数増加!

    無料会員に登録する

    ©2024 GRAS Group, Inc.RSS